Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Unreviewed, rolling out r148034, r148052, r148097, and
r148194. http://trac.webkit.org/changeset/148034 http://trac.webkit.org/changeset/148052 http://trac.webkit.org/changeset/148097 http://trac.webkit.org/changeset/148194 https://bugs.webkit.org/show_bug.cgi?id=114463 broke mutiresolution favicons, among other things (Requested by thorton on #webkit). Source/WebCore: * loader/icon/IconDatabase.cpp: (WebCore::IconDatabase::setIconDataForIconURL): * loader/icon/IconDatabase.h: (IconDatabase): * loader/icon/IconDatabaseBase.h: * loader/icon/IconRecord.cpp: * loader/icon/IconRecord.h: (IconRecord): Source/WebKit2: * UIProcess/WebIconDatabase.cpp: (WebKit::WebIconDatabase::setIconDataForIconURL): * UIProcess/WebIconDatabase.h: (WebIconDatabase): * UIProcess/WebIconDatabase.messages.in: * WebProcess/IconDatabase/WebIconDatabaseProxy.cpp: (WebKit::WebIconDatabaseProxy::setIconDataForIconURL): * WebProcess/Plugins/PDF/PDFPlugin.mm: (WebKit::PDFPlugin::destroy): Canonical link: https://commits.webkit.org/132846@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@148233 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
76 additions
and 104 deletions.
- +22 −0 Source/WebCore/ChangeLog
- +21 −63 Source/WebCore/loader/icon/IconDatabase.cpp
- +1 −4 Source/WebCore/loader/icon/IconDatabase.h
- +0 −2 Source/WebCore/loader/icon/IconDatabaseBase.h
- +0 −6 Source/WebCore/loader/icon/IconRecord.cpp
- +0 −1 Source/WebCore/loader/icon/IconRecord.h
- +23 −0 Source/WebKit2/ChangeLog
- +4 −9 Source/WebKit2/UIProcess/WebIconDatabase.cpp
- +1 −2 Source/WebKit2/UIProcess/WebIconDatabase.h
- +1 −1 Source/WebKit2/UIProcess/WebIconDatabase.messages.in
- +2 −15 Source/WebKit2/WebProcess/IconDatabase/WebIconDatabaseProxy.cpp
- +1 −1 Source/WebKit2/WebProcess/Plugins/PDF/PDFPlugin.mm
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -77,12 +77,6 @@ void IconRecord::setImageData(PassRefPtr<SharedBuffer> data) | ||
m_dataSet = true; | ||
} | ||
|
||
void IconRecord::loadImageFromResource(const char* resource) | ||
{ | ||
if (!resource) | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters