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

Side by Side Diff: components/favicon/core/favicon_handler.h

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 COMPONENTS_FAVICON_CORE_FAVICON_HANDLER_H_ 5 #ifndef COMPONENTS_FAVICON_CORE_FAVICON_HANDLER_H_
6 #define COMPONENTS_FAVICON_CORE_FAVICON_HANDLER_H_ 6 #define COMPONENTS_FAVICON_CORE_FAVICON_HANDLER_H_
7 7
8 #include <stddef.h>
9
8 #include <map> 10 #include <map>
9 #include <vector> 11 #include <vector>
10 12
11 #include "base/basictypes.h"
12 #include "base/callback_forward.h" 13 #include "base/callback_forward.h"
14 #include "base/macros.h"
13 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
14 #include "base/task/cancelable_task_tracker.h" 16 #include "base/task/cancelable_task_tracker.h"
15 #include "components/favicon/core/favicon_driver_observer.h" 17 #include "components/favicon/core/favicon_driver_observer.h"
16 #include "components/favicon/core/favicon_url.h" 18 #include "components/favicon/core/favicon_url.h"
17 #include "components/favicon_base/favicon_callback.h" 19 #include "components/favicon_base/favicon_callback.h"
18 #include "ui/gfx/favicon_size.h" 20 #include "ui/gfx/favicon_size.h"
19 #include "ui/gfx/image/image.h" 21 #include "ui/gfx/image/image.h"
20 #include "url/gurl.h" 22 #include "url/gurl.h"
21 23
22 class SkBitmap; 24 class SkBitmap;
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 // available the favicon service and the current page are updated (assuming 304 // available the favicon service and the current page are updated (assuming
303 // the image is for a favicon). 305 // the image is for a favicon).
304 FaviconCandidate best_favicon_candidate_; 306 FaviconCandidate best_favicon_candidate_;
305 307
306 DISALLOW_COPY_AND_ASSIGN(FaviconHandler); 308 DISALLOW_COPY_AND_ASSIGN(FaviconHandler);
307 }; 309 };
308 310
309 } // namespace favicon 311 } // namespace favicon
310 312
311 #endif // COMPONENTS_FAVICON_CORE_FAVICON_HANDLER_H_ 313 #endif // COMPONENTS_FAVICON_CORE_FAVICON_HANDLER_H_
OLDNEW
« no previous file with comments | « components/favicon/core/favicon_driver_impl.cc ('k') | components/favicon/core/favicon_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698