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

Side by Side Diff: components/favicon/content/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: 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
blundell 2014/04/08 10:01:19 nit: kill (c).
jif 2014/04/08 11:55:47 Done.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_FAVICON_CONTENT_CONTENT_FAVICON_DRIVER_H_
6 #define COMPONENTS_FAVICON_CONTENT_CONTENT_FAVICON_DRIVER_H_
7
8 #include "components/favicon/core/favicon_driver.h"
9
10 #include "content/public/browser/web_contents_observer.h"
11
12 class FaviconClient;
13
14 namespace content {
15 class WebContents;
16 }
17
18 class ContentFaviconDriver : public FaviconDriver,
blundell 2014/04/08 10:01:19 Add a class-level comment.
jif 2014/04/08 11:55:47 Done.
19 public content::WebContentsObserver {
20 public:
21 ContentFaviconDriver(content::WebContents* web_contents);
22 virtual ~ContentFaviconDriver();
23
24 // FaviconDriver implementation.
25 virtual bool IsOffTheRecord() OVERRIDE;
26
27 private:
28 DISALLOW_COPY_AND_ASSIGN(ContentFaviconDriver);
29 };
30
31 #endif // COMPONENTS_FAVICON_CONTENT_CONTENT_FAVICON_DRIVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698