| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 129 |
| 130 // Bypass cache when downloading favicons for this page URL. | 130 // Bypass cache when downloading favicons for this page URL. |
| 131 GURL bypass_cache_page_url_; | 131 GURL bypass_cache_page_url_; |
| 132 | 132 |
| 133 scoped_ptr<FaviconHandler> favicon_handler_; | 133 scoped_ptr<FaviconHandler> favicon_handler_; |
| 134 | 134 |
| 135 // Handles downloading touchicons. It is NULL if | 135 // Handles downloading touchicons. It is NULL if |
| 136 // browser_defaults::kEnableTouchIcon is false. | 136 // browser_defaults::kEnableTouchIcon is false. |
| 137 scoped_ptr<FaviconHandler> touch_icon_handler_; | 137 scoped_ptr<FaviconHandler> touch_icon_handler_; |
| 138 | 138 |
| 139 scoped_ptr<FaviconHandler> large_icon_handler_; |
| 140 |
| 139 ObserverList<FaviconTabHelperObserver> observer_list_; | 141 ObserverList<FaviconTabHelperObserver> observer_list_; |
| 140 | 142 |
| 141 DISALLOW_COPY_AND_ASSIGN(FaviconTabHelper); | 143 DISALLOW_COPY_AND_ASSIGN(FaviconTabHelper); |
| 142 }; | 144 }; |
| 143 | 145 |
| 144 #endif // CHROME_BROWSER_FAVICON_FAVICON_TAB_HELPER_H_ | 146 #endif // CHROME_BROWSER_FAVICON_FAVICON_TAB_HELPER_H_ |
| OLD | NEW |