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

Unified Diff: content/browser/tab_contents/tab_contents.cc

Issue 6677051: fav icon -> favicon. Pass 8: content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « content/browser/tab_contents/tab_contents.h ('k') | content/browser/webui/web_ui_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/tab_contents/tab_contents.cc
diff --git a/content/browser/tab_contents/tab_contents.cc b/content/browser/tab_contents/tab_contents.cc
index 0c62335695b1a1fb815e9d91624c87e9b6b9bc43..cb82194e5fc4803e4c1a8a43ec139608e2b0c04a 100644
--- a/content/browser/tab_contents/tab_contents.cc
+++ b/content/browser/tab_contents/tab_contents.cc
@@ -588,7 +588,7 @@ SkBitmap TabContents::GetFavicon() const {
return SkBitmap();
}
-bool TabContents::FavIconIsValid() const {
+bool TabContents::FaviconIsValid() const {
NavigationEntry* entry = controller_.GetTransientEntry();
if (entry)
return entry->favicon().is_valid();
@@ -600,7 +600,7 @@ bool TabContents::FavIconIsValid() const {
return false;
}
-bool TabContents::ShouldDisplayFavIcon() {
+bool TabContents::ShouldDisplayFavicon() {
// Always display a throbber during pending loads.
if (controller_.GetLastCommittedEntry() && controller_.pending_entry())
return true;
« no previous file with comments | « content/browser/tab_contents/tab_contents.h ('k') | content/browser/webui/web_ui_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698