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

Side by Side Diff: chrome/browser/ui/webui/favicon_source.h

Issue 137263007: Move CancelableTaskTracker to //base/task/CancelableTaskTracker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move to base/task/cancelable_task_tracker* Created 6 years, 10 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
1 // Copyright (c) 2012 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_UI_WEBUI_FAVICON_SOURCE_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_FAVICON_SOURCE_H_
6 #define CHROME_BROWSER_UI_WEBUI_FAVICON_SOURCE_H_ 6 #define CHROME_BROWSER_UI_WEBUI_FAVICON_SOURCE_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/task/cancelable_task_tracker.h"
13 #include "chrome/browser/favicon/favicon_service.h" 14 #include "chrome/browser/favicon/favicon_service.h"
14 #include "chrome/common/cancelable_task_tracker.h"
15 #include "content/public/browser/url_data_source.h" 15 #include "content/public/browser/url_data_source.h"
16 #include "ui/gfx/favicon_size.h" 16 #include "ui/gfx/favicon_size.h"
17 17
18 class Profile; 18 class Profile;
19 19
20 // FaviconSource is the gateway between network-level chrome: 20 // FaviconSource is the gateway between network-level chrome:
21 // requests for favicons and the history backend that serves these. 21 // requests for favicons and the history backend that serves these.
22 // 22 //
23 // Format: 23 // Format:
24 // chrome://favicon/size&scalefactor/urlmodifier/url 24 // chrome://favicon/size&scalefactor/urlmodifier/url
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 const IconRequest& request, 122 const IconRequest& request,
123 const chrome::FaviconBitmapResult& bitmap_result); 123 const chrome::FaviconBitmapResult& bitmap_result);
124 124
125 // Sends the 16x16 DIP 1x default favicon. 125 // Sends the 16x16 DIP 1x default favicon.
126 void SendDefaultResponse( 126 void SendDefaultResponse(
127 const content::URLDataSource::GotDataCallback& callback); 127 const content::URLDataSource::GotDataCallback& callback);
128 128
129 // Sends the default favicon. 129 // Sends the default favicon.
130 void SendDefaultResponse(const IconRequest& request); 130 void SendDefaultResponse(const IconRequest& request);
131 131
132 CancelableTaskTracker cancelable_task_tracker_; 132 base::CancelableTaskTracker cancelable_task_tracker_;
133 133
134 // Raw PNG representations of favicons of each size to show when the favicon 134 // Raw PNG representations of favicons of each size to show when the favicon
135 // database doesn't have a favicon for a webpage. Indexed by IconSize values. 135 // database doesn't have a favicon for a webpage. Indexed by IconSize values.
136 scoped_refptr<base::RefCountedMemory> default_favicons_[NUM_SIZES]; 136 scoped_refptr<base::RefCountedMemory> default_favicons_[NUM_SIZES];
137 137
138 // The chrome::IconTypes of icon that this FaviconSource handles. 138 // The chrome::IconTypes of icon that this FaviconSource handles.
139 int icon_types_; 139 int icon_types_;
140 140
141 DISALLOW_COPY_AND_ASSIGN(FaviconSource); 141 DISALLOW_COPY_AND_ASSIGN(FaviconSource);
142 }; 142 };
143 143
144 #endif // CHROME_BROWSER_UI_WEBUI_FAVICON_SOURCE_H_ 144 #endif // CHROME_BROWSER_UI_WEBUI_FAVICON_SOURCE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/extensions/extension_icon_source.h ('k') | chrome/browser/ui/webui/fileicon_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698