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

Side by Side Diff: chrome/browser/favicon/favicon_handler.h

Issue 9706012: Add abstractions that let embedders drive tests of WebContents. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove CONTENT_EXPORT on statically linked functions. Merge to head for commit. Created 8 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_FAVICON_FAVICON_HANDLER_H_ 5 #ifndef CHROME_BROWSER_FAVICON_FAVICON_HANDLER_H_
6 #define CHROME_BROWSER_FAVICON_FAVICON_HANDLER_H_ 6 #define CHROME_BROWSER_FAVICON_FAVICON_HANDLER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/callback_forward.h" 12 #include "base/callback_forward.h"
13 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
14 #include "chrome/browser/cancelable_request.h" 14 #include "chrome/browser/cancelable_request.h"
15 #include "chrome/browser/favicon/favicon_service.h" 15 #include "chrome/browser/favicon/favicon_service.h"
16 #include "chrome/browser/favicon/favicon_tab_helper.h" 16 #include "chrome/browser/favicon/favicon_tab_helper.h"
17 #include "chrome/common/favicon_url.h" 17 #include "chrome/common/favicon_url.h"
18 #include "chrome/common/ref_counted_util.h" 18 #include "chrome/common/ref_counted_util.h"
19 #include "googleurl/src/gurl.h" 19 #include "googleurl/src/gurl.h"
20 #include "ui/gfx/favicon_size.h" 20 #include "ui/gfx/favicon_size.h"
21 21
22 class FaviconHandlerDelegate; 22 class FaviconHandlerDelegate;
23 class Profile; 23 class Profile;
24 class RefCountedMemory; 24 class RefCountedMemory;
25 class SkBitmap; 25 class SkBitmap;
26 class TabContents;
27 26
28 namespace content { 27 namespace content {
29 class NavigationEntry; 28 class NavigationEntry;
30 } 29 }
31 30
32 namespace gfx { 31 namespace gfx {
33 class Image; 32 class Image;
34 } 33 }
35 34
36 // FaviconHandler works with FaviconTabHelper to fetch the specific type of 35 // FaviconHandler works with FaviconTabHelper to fetch the specific type of
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 // The Profile associated with this handler. 263 // The Profile associated with this handler.
265 Profile* profile_; 264 Profile* profile_;
266 265
267 // This handler's delegate. 266 // This handler's delegate.
268 FaviconHandlerDelegate* delegate_; // weak 267 FaviconHandlerDelegate* delegate_; // weak
269 268
270 DISALLOW_COPY_AND_ASSIGN(FaviconHandler); 269 DISALLOW_COPY_AND_ASSIGN(FaviconHandler);
271 }; 270 };
272 271
273 #endif // CHROME_BROWSER_FAVICON_FAVICON_HANDLER_H_ 272 #endif // CHROME_BROWSER_FAVICON_FAVICON_HANDLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/external_tab_container_win.h ('k') | chrome/browser/favicon/favicon_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698