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

Unified Diff: components/favicon/content/browser/content_favicon_driver.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: Review fixes. 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: components/favicon/content/browser/content_favicon_driver.h
diff --git a/components/favicon/content/browser/content_favicon_driver.h b/components/favicon/content/browser/content_favicon_driver.h
new file mode 100644
index 0000000000000000000000000000000000000000..5f789674cfecbc175b6376e1358e7ae74120f55e
--- /dev/null
+++ b/components/favicon/content/browser/content_favicon_driver.h
@@ -0,0 +1,32 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_FAVICON_CONTENT_BROWSER_CONTENT_FAVICON_DRIVER_H_
+#define COMPONENTS_FAVICON_CONTENT_BROWSER_CONTENT_FAVICON_DRIVER_H_
+
+#include "components/favicon/content/favicon_driver.h"
+
+#include "content/public/browser/web_contents_observer.h"
+
+class FaviconClient;
+
+namespace content {
+class WebContents;
+}
+
+// Implementation of the FaviconDriver based on content.
+class ContentFaviconDriver : public FaviconDriver,
+ public content::WebContentsObserver {
+ public:
+ ContentFaviconDriver(content::WebContents* web_contents);
+ virtual ~ContentFaviconDriver();
+
+ // FaviconDriver implementation.
+ virtual bool IsOffTheRecord() OVERRIDE;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ContentFaviconDriver);
+};
+
+#endif // COMPONENTS_FAVICON_CONTENT_BROWSER_CONTENT_FAVICON_DRIVER_H_

Powered by Google App Engine
This is Rietveld 408576698