Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: chrome/browser/favicon/favicon_tab_helper.h

Issue 1010783002: [Icons NTP] Working prototype to fetch, store, and display big icons. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698