OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_DRIVER_IMPL_H_ | 5 #ifndef COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_IMPL_H_ |
6 #define COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_IMPL_H_ | 6 #define COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" |
11 #include "components/favicon/core/favicon_driver.h" | 12 #include "components/favicon/core/favicon_driver.h" |
12 | 13 |
13 class GURL; | 14 class GURL; |
14 class SkBitmap; | 15 class SkBitmap; |
15 | 16 |
16 namespace bookmarks { | 17 namespace bookmarks { |
17 class BookmarkModel; | 18 class BookmarkModel; |
18 } | 19 } |
19 | 20 |
20 namespace gfx { | 21 namespace gfx { |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 // |touch_icon_handler_| may be null depending on the platform and variations. | 90 // |touch_icon_handler_| may be null depending on the platform and variations. |
90 scoped_ptr<FaviconHandler> favicon_handler_; | 91 scoped_ptr<FaviconHandler> favicon_handler_; |
91 scoped_ptr<FaviconHandler> touch_icon_handler_; | 92 scoped_ptr<FaviconHandler> touch_icon_handler_; |
92 | 93 |
93 DISALLOW_COPY_AND_ASSIGN(FaviconDriverImpl); | 94 DISALLOW_COPY_AND_ASSIGN(FaviconDriverImpl); |
94 }; | 95 }; |
95 | 96 |
96 } // namespace favicon | 97 } // namespace favicon |
97 | 98 |
98 #endif // COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_IMPL_H_ | 99 #endif // COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_IMPL_H_ |
OLD | NEW |