| OLD | NEW |
| 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 CHROME_BROWSER_FAVICON_FAVICON_TAB_HELPER_H_ | 5 #ifndef CHROME_BROWSER_FAVICON_FAVICON_TAB_HELPER_H_ |
| 6 #define CHROME_BROWSER_FAVICON_FAVICON_TAB_HELPER_H_ | 6 #define CHROME_BROWSER_FAVICON_FAVICON_TAB_HELPER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 FaviconClient* client_; | 124 FaviconClient* client_; |
| 125 | 125 |
| 126 std::vector<content::FaviconURL> favicon_urls_; | 126 std::vector<content::FaviconURL> favicon_urls_; |
| 127 | 127 |
| 128 scoped_ptr<FaviconHandler> favicon_handler_; | 128 scoped_ptr<FaviconHandler> favicon_handler_; |
| 129 | 129 |
| 130 // Handles downloading touchicons. It is NULL if | 130 // Handles downloading touchicons. It is NULL if |
| 131 // browser_defaults::kEnableTouchIcon is false. | 131 // browser_defaults::kEnableTouchIcon is false. |
| 132 scoped_ptr<FaviconHandler> touch_icon_handler_; | 132 scoped_ptr<FaviconHandler> touch_icon_handler_; |
| 133 | 133 |
| 134 scoped_ptr<FaviconHandler> big_icon_handler_; |
| 135 |
| 134 ObserverList<FaviconTabHelperObserver> observer_list_; | 136 ObserverList<FaviconTabHelperObserver> observer_list_; |
| 135 | 137 |
| 136 DISALLOW_COPY_AND_ASSIGN(FaviconTabHelper); | 138 DISALLOW_COPY_AND_ASSIGN(FaviconTabHelper); |
| 137 }; | 139 }; |
| 138 | 140 |
| 139 #endif // CHROME_BROWSER_FAVICON_FAVICON_TAB_HELPER_H_ | 141 #endif // CHROME_BROWSER_FAVICON_FAVICON_TAB_HELPER_H_ |
| OLD | NEW |