| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_BROWSER_FAVICON_CLIENT_H_ | 5 #ifndef COMPONENTS_FAVICON_CORE_FAVICON_CLIENT_H_ |
| 6 #define COMPONENTS_FAVICON_CORE_BROWSER_FAVICON_CLIENT_H_ | 6 #define COMPONENTS_FAVICON_CORE_FAVICON_CLIENT_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/task/cancelable_task_tracker.h" | 11 #include "base/task/cancelable_task_tracker.h" |
| 12 #include "components/favicon_base/favicon_callback.h" | 12 #include "components/favicon_base/favicon_callback.h" |
| 13 #include "components/keyed_service/core/keyed_service.h" | 13 #include "components/keyed_service/core/keyed_service.h" |
| 14 | 14 |
| 15 class GURL; | 15 class GURL; |
| 16 | 16 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 37 base::CancelableTaskTracker* tracker) = 0; | 37 base::CancelableTaskTracker* tracker) = 0; |
| 38 | 38 |
| 39 protected: | 39 protected: |
| 40 FaviconClient() {} | 40 FaviconClient() {} |
| 41 ~FaviconClient() override {} | 41 ~FaviconClient() override {} |
| 42 | 42 |
| 43 private: | 43 private: |
| 44 DISALLOW_COPY_AND_ASSIGN(FaviconClient); | 44 DISALLOW_COPY_AND_ASSIGN(FaviconClient); |
| 45 }; | 45 }; |
| 46 | 46 |
| 47 #endif // COMPONENTS_FAVICON_CORE_BROWSER_FAVICON_CLIENT_H_ | 47 #endif // COMPONENTS_FAVICON_CORE_FAVICON_CLIENT_H_ |
| OLD | NEW |