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_FAVICON_DRIVER_H_ | 5 #ifndef COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_H_ |
6 #define COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_H_ | 6 #define COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
10 | 10 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 virtual void SetActiveFaviconImage(const gfx::Image& image) = 0; | 67 virtual void SetActiveFaviconImage(const gfx::Image& image) = 0; |
68 | 68 |
69 // Notifies the driver a favicon image is available. |image| is not | 69 // Notifies the driver a favicon image is available. |image| is not |
70 // necessarily 16x16. |icon_url| is the url the image is from. If | 70 // necessarily 16x16. |icon_url| is the url the image is from. If |
71 // |is_active_favicon| is true the image corresponds to the favicon | 71 // |is_active_favicon| is true the image corresponds to the favicon |
72 // (possibly empty) of the page. | 72 // (possibly empty) of the page. |
73 virtual void OnFaviconAvailable(const gfx::Image& image, | 73 virtual void OnFaviconAvailable(const gfx::Image& image, |
74 const GURL& icon_url, | 74 const GURL& icon_url, |
75 bool is_active_favicon) = 0; | 75 bool is_active_favicon) = 0; |
76 | 76 |
| 77 // Sends notification that the current page favicon has changed. |
| 78 // |icon_url_changed| is true if the URL of the favicon changed in addition to |
| 79 // the favicon image. |
| 80 virtual void NotifyFaviconUpdated(bool icon_url_changed) = 0; |
| 81 |
77 protected: | 82 protected: |
78 FaviconDriver() {} | 83 FaviconDriver() {} |
79 virtual ~FaviconDriver() {} | 84 virtual ~FaviconDriver() {} |
80 | 85 |
81 private: | 86 private: |
82 DISALLOW_COPY_AND_ASSIGN(FaviconDriver); | 87 DISALLOW_COPY_AND_ASSIGN(FaviconDriver); |
83 }; | 88 }; |
84 | 89 |
85 } // namespace favicon | 90 } // namespace favicon |
86 | 91 |
87 #endif // COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_H_ | 92 #endif // COMPONENTS_FAVICON_CORE_FAVICON_DRIVER_H_ |
OLD | NEW |