Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(608)

Unified Diff: chrome/browser/favicon/favicon_tab_helper.cc

Issue 7032013: Adapt to new icon interface from WebFrame (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/favicon/favicon_tab_helper.cc
diff --git a/chrome/browser/favicon/favicon_tab_helper.cc b/chrome/browser/favicon/favicon_tab_helper.cc
index ecaa29b89e87415068a9d43666f571789c53f043..afd9b1cd4c733bc6307aea6963f13afde42abcc2 100644
--- a/chrome/browser/favicon/favicon_tab_helper.cc
+++ b/chrome/browser/favicon/favicon_tab_helper.cc
@@ -4,10 +4,10 @@
#include "chrome/browser/favicon/favicon_tab_helper.h"
-#include "chrome/browser/defaults.h"
#include "chrome/browser/favicon/favicon_handler.h"
#include "chrome/browser/history/history.h"
#include "chrome/browser/profiles/profile.h"
+#include "chrome/common/chrome_constants.h"
#include "chrome/common/icon_messages.h"
#include "content/browser/tab_contents/tab_contents.h"
#include "content/browser/webui/web_ui.h"
@@ -17,7 +17,7 @@ FaviconTabHelper::FaviconTabHelper(TabContents* tab_contents)
: TabContentsObserver(tab_contents) {
favicon_handler_.reset(new FaviconHandler(tab_contents,
FaviconHandler::FAVICON));
- if (browser_defaults::kEnableTouchIcon)
+ if (chrome::kEnableTouchIcon)
touch_icon_handler_.reset(new FaviconHandler(tab_contents,
FaviconHandler::TOUCH));
}

Powered by Google App Engine
This is Rietveld 408576698