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

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

Issue 835903005: [Favicon] Add new fallback icon rendering flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding new host chrome://fallback-icon. Created 5 years, 11 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_FAVICON_FAVICON_SERVICE_H_ 5 #ifndef CHROME_BROWSER_FAVICON_FAVICON_SERVICE_H_
6 #define CHROME_BROWSER_FAVICON_FAVICON_SERVICE_H_ 6 #define CHROME_BROWSER_FAVICON_FAVICON_SERVICE_H_
7 7
8 #include <memory>
pkotwicz 2015/01/21 19:44:15 Is this include needed?
huangs 2015/01/22 01:13:27 Oops remnants from now-removed use of std::unique_
8 #include <vector> 9 #include <vector>
9 10
10 #include "base/callback.h" 11 #include "base/callback.h"
11 #include "base/containers/hash_tables.h" 12 #include "base/containers/hash_tables.h"
12 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
13 #include "base/task/cancelable_task_tracker.h" 14 #include "base/task/cancelable_task_tracker.h"
14 #include "components/favicon_base/favicon_callback.h" 15 #include "components/favicon_base/favicon_callback.h"
15 #include "components/favicon_base/favicon_types.h" 16 #include "components/favicon_base/favicon_types.h"
16 #include "components/keyed_service/core/keyed_service.h" 17 #include "components/keyed_service/core/keyed_service.h"
17 18
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 void RunFaviconRawBitmapCallbackWithBitmapResults( 244 void RunFaviconRawBitmapCallbackWithBitmapResults(
244 const favicon_base::FaviconRawBitmapCallback& callback, 245 const favicon_base::FaviconRawBitmapCallback& callback,
245 int desired_size_in_pixel, 246 int desired_size_in_pixel,
246 const std::vector<favicon_base::FaviconRawBitmapResult>& 247 const std::vector<favicon_base::FaviconRawBitmapResult>&
247 favicon_bitmap_results); 248 favicon_bitmap_results);
248 249
249 DISALLOW_COPY_AND_ASSIGN(FaviconService); 250 DISALLOW_COPY_AND_ASSIGN(FaviconService);
250 }; 251 };
251 252
252 #endif // CHROME_BROWSER_FAVICON_FAVICON_SERVICE_H_ 253 #endif // CHROME_BROWSER_FAVICON_FAVICON_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698