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..4a2667ce5a32b96aad61b1047898f2b87851f29f 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* delegate, |
blundell
2014/04/28 08:59:28
delegate should be changed to driver everywhere.
jif
2014/04/28 10:07:20
Done.
"git grep -i delegate components/favicon" no
|
Type icon_type, |
bool download_largest_icon); |
virtual ~FaviconHandler(); |
@@ -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* delegate_; // 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 |