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

Unified Diff: chrome/browser/debugger/devtools_window.cc

Issue 6672065: Support touch icon in FaviconHelper (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Only update the FAVICON data to the NavigationEntry. Created 9 years, 9 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
« no previous file with comments | « no previous file | chrome/browser/favicon_delegate.h » ('j') | chrome/browser/favicon_helper.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/debugger/devtools_window.cc
diff --git a/chrome/browser/debugger/devtools_window.cc b/chrome/browser/debugger/devtools_window.cc
index 5e4b3246b9865231085fdc7103e2f7c028ac3e7b..04fc766d45c4a9bb09f3438e8d689aa527647dc1 100644
--- a/chrome/browser/debugger/devtools_window.cc
+++ b/chrome/browser/debugger/devtools_window.cc
@@ -75,8 +75,8 @@ DevToolsWindow::DevToolsWindow(Profile* profile,
// Wipe out page icon so that the default application icon is used.
NavigationEntry* entry = tab_contents_->controller().GetActiveEntry();
- entry->favicon().set_bitmap(SkBitmap());
- entry->favicon().set_is_valid(true);
+ entry->GetFavicon(history::FAVICON).set_bitmap(SkBitmap());
+ entry->GetFavicon(history::FAVICON).set_is_valid(true);
// Register on-load actions.
registrar_.Add(this,
« no previous file with comments | « no previous file | chrome/browser/favicon_delegate.h » ('j') | chrome/browser/favicon_helper.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698