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

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

Issue 227153007: Remove dependency on Profile's IsOffTheRecord in favicon_handler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@FAVICON_create_core_dir
Patch Set: 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
Index: chrome/browser/favicon/favicon_handler.h
diff --git a/chrome/browser/favicon/favicon_handler.h b/chrome/browser/favicon/favicon_handler.h
index e25620af426ef6a492c8c743e22bc8c37ec121b4..48931a7623b9538229d787ff26920e483f4f7dc2 100644
--- a/chrome/browser/favicon/favicon_handler.h
+++ b/chrome/browser/favicon/favicon_handler.h
@@ -19,6 +19,7 @@
#include "ui/gfx/image/image.h"
#include "url/gurl.h"
+class FaviconDriver;
class FaviconHandlerDelegate;
class Profile;
class SkBitmap;
@@ -84,6 +85,7 @@ class FaviconHandler {
};
FaviconHandler(Profile* profile,
+ FaviconDriver* driver,
FaviconHandlerDelegate* delegate,
Type icon_type);
virtual ~FaviconHandler();
@@ -286,6 +288,9 @@ class FaviconHandler {
// The Profile associated with this handler.
Profile* profile_;
+ // The driver which implements platform-specific PasswordManager operations.
blundell 2014/04/08 10:01:19 Favicon
jif 2014/04/08 11:55:47 Done.
+ FaviconDriver* driver_; // weak
+
// This handler's delegate.
FaviconHandlerDelegate* delegate_; // weak

Powered by Google App Engine
This is Rietveld 408576698