diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 20:09:34 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 20:09:34 +0000 |
commit | 7d8cea7ce592595c561dba97fab2c2901ebd7d34 (patch) | |
tree | d6f44778ef4d800d1ace41333ac291628bc706e9 | |
parent | 93d49d70b89b22ec46d0b00b7950297f64865d56 (diff) | |
download | chromium_src-7d8cea7ce592595c561dba97fab2c2901ebd7d34.zip chromium_src-7d8cea7ce592595c561dba97fab2c2901ebd7d34.tar.gz chromium_src-7d8cea7ce592595c561dba97fab2c2901ebd7d34.tar.bz2 |
Switching to a plugin icon as the favicon for the extensions page.
TBR=arv
BUG=25509
TEST=Open the extensions page and it should have a plugin as it's favicon.
Review URL: http://codereview.chromium.org/329012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29935 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/app/theme/extensions_favicon.png | bin | 863 -> 0 bytes | |||
-rw-r--r-- | chrome/app/theme/theme_resources.grd | 1 | ||||
-rw-r--r-- | chrome/browser/extensions/extensions_ui.cc | 2 |
3 files changed, 1 insertions, 2 deletions
diff --git a/chrome/app/theme/extensions_favicon.png b/chrome/app/theme/extensions_favicon.png Binary files differdeleted file mode 100644 index f3da311..0000000 --- a/chrome/app/theme/extensions_favicon.png +++ /dev/null diff --git a/chrome/app/theme/theme_resources.grd b/chrome/app/theme/theme_resources.grd index 40a534f..9296a60 100644 --- a/chrome/app/theme/theme_resources.grd +++ b/chrome/app/theme/theme_resources.grd @@ -259,7 +259,6 @@ <include name="IDR_HOME_P" file="home_p.png" type="BINDATA" /> <include name="IDR_HISTORY_FAVICON" file="history_favicon.png" type="BINDATA" /> <include name="IDR_DOWNLOADS_FAVICON" file="downloads_favicon.png" type="BINDATA" /> - <include name="IDR_EXTENSIONS_FAVICON" file="extensions_favicon.png" type="BINDATA" /> <include name="IDR_MENU_PAGE_RTL" file="menu_page_rtl.png" type="BINDATA" /> <include name="IDR_MENU_CHROME_RTL" file="menu_chrome_rtl.png" type="BINDATA" /> <include name="IDR_DOWNLOAD_ANIMATION_BEGIN" file="download_animation_begin.png" type="BINDATA" /> diff --git a/chrome/browser/extensions/extensions_ui.cc b/chrome/browser/extensions/extensions_ui.cc index 7013829..7bae618 100644 --- a/chrome/browser/extensions/extensions_ui.cc +++ b/chrome/browser/extensions/extensions_ui.cc @@ -514,5 +514,5 @@ ExtensionsUI::ExtensionsUI(TabContents* contents) : DOMUI(contents) { // static RefCountedMemory* ExtensionsUI::GetFaviconResourceBytes() { return ResourceBundle::GetSharedInstance(). - LoadImageResourceBytes(IDR_EXTENSIONS_FAVICON); + LoadImageResourceBytes(IDR_PLUGIN); } |