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

Unified Diff: chrome/browser/favicon/favicon_handler.h

Issue 255843002: Renamed FaviconHandlerDelegate to FaviconDriver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed leftovers. Created 6 years, 8 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/favicon_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/favicon/favicon_handler.h
diff --git a/chrome/browser/favicon/favicon_handler.h b/chrome/browser/favicon/favicon_handler.h
index a9e1826210df574a9a013aa8e2be50ebfa680456..7dc6a7fbeee64420c46fd57e2948ad58690a3944 100644
--- a/chrome/browser/favicon/favicon_handler.h
+++ b/chrome/browser/favicon/favicon_handler.h
@@ -21,7 +21,7 @@
#include "url/gurl.h"
class FaviconClient;
-class FaviconHandlerDelegate;
+class FaviconDriver;
class SkBitmap;
namespace base {
@@ -87,7 +87,7 @@ class FaviconHandler {
};
FaviconHandler(FaviconClient* client,
- FaviconHandlerDelegate* delegate,
+ FaviconDriver* driver,
Type icon_type,
bool download_largest_icon);
virtual ~FaviconHandler();
@@ -159,7 +159,7 @@ class FaviconHandler {
// Returns true if the favicon should be saved.
virtual bool ShouldSaveFavicon(const GURL& url);
- // Notifies the delegate that the favicon for the active entry was updated.
+ // Notifies the driver that the favicon for the active entry was updated.
// |icon_url_changed| is true if a favicon with a different icon URL has been
// selected since the previous call to NotifyFaviconUpdated().
virtual void NotifyFaviconUpdated(bool icon_url_changed);
@@ -295,8 +295,8 @@ class FaviconHandler {
// The client which implements embedder-specific Favicon operations.
FaviconClient* client_; // weak
- // This handler's delegate.
- FaviconHandlerDelegate* delegate_; // weak
+ // This handler's driver.
+ FaviconDriver* driver_; // weak
// Best image we've seen so far. As images are downloaded from the page they
// are stored here. When there is an exact match, or no more images are
« no previous file with comments | « no previous file | chrome/browser/favicon/favicon_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698