| 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 CHROME_BROWSER_UI_WEBUI_LARGE_ICON_SOURCE_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_LARGE_ICON_SOURCE_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_LARGE_ICON_SOURCE_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_LARGE_ICON_SOURCE_H_ |
| 7 | 7 |
| 8 #include <memory> |
| 8 #include <string> | 9 #include <string> |
| 9 | 10 |
| 10 #include "base/macros.h" | 11 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" | |
| 12 #include "base/task/cancelable_task_tracker.h" | 12 #include "base/task/cancelable_task_tracker.h" |
| 13 #include "components/favicon/core/fallback_icon_service.h" | 13 #include "components/favicon/core/fallback_icon_service.h" |
| 14 #include "content/public/browser/url_data_source.h" | 14 #include "content/public/browser/url_data_source.h" |
| 15 | 15 |
| 16 namespace favicon { | 16 namespace favicon { |
| 17 class FallbackIconService; | 17 class FallbackIconService; |
| 18 class LargeIconService; | 18 class LargeIconService; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace favicon_base { | 21 namespace favicon_base { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 // Owned by client. | 72 // Owned by client. |
| 73 favicon::FallbackIconService* fallback_icon_service_; | 73 favicon::FallbackIconService* fallback_icon_service_; |
| 74 | 74 |
| 75 // Owned by client. | 75 // Owned by client. |
| 76 favicon::LargeIconService* large_icon_service_; | 76 favicon::LargeIconService* large_icon_service_; |
| 77 | 77 |
| 78 DISALLOW_COPY_AND_ASSIGN(LargeIconSource); | 78 DISALLOW_COPY_AND_ASSIGN(LargeIconSource); |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 #endif // CHROME_BROWSER_UI_WEBUI_LARGE_ICON_SOURCE_H_ | 81 #endif // CHROME_BROWSER_UI_WEBUI_LARGE_ICON_SOURCE_H_ |
| OLD | NEW |