| 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_UI_WEBUI_NTP_FAVICON_WEBUI_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_NTP_FAVICON_WEBUI_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_NTP_FAVICON_WEBUI_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_NTP_FAVICON_WEBUI_HANDLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/task/cancelable_task_tracker.h" |
| 13 #include "chrome/browser/favicon/favicon_service.h" | 14 #include "chrome/browser/favicon/favicon_service.h" |
| 14 #include "chrome/common/cancelable_task_tracker.h" | |
| 15 #include "content/public/browser/web_ui_message_handler.h" | 15 #include "content/public/browser/web_ui_message_handler.h" |
| 16 | 16 |
| 17 class ExtensionIconColorManager; | 17 class ExtensionIconColorManager; |
| 18 | 18 |
| 19 namespace base { | 19 namespace base { |
| 20 class ListValue; | 20 class ListValue; |
| 21 } | 21 } |
| 22 | 22 |
| 23 class FaviconWebUIHandler : public content::WebUIMessageHandler { | 23 class FaviconWebUIHandler : public content::WebUIMessageHandler { |
| 24 public: | 24 public: |
| (...skipping 13 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 // Callback getting signal that an app icon is loaded. | 39 // Callback getting signal that an app icon is loaded. |
| 40 void NotifyAppIconReady(const std::string& extension_id); | 40 void NotifyAppIconReady(const std::string& extension_id); |
| 41 | 41 |
| 42 private: | 42 private: |
| 43 // Called when favicon data is available from the history backend. | 43 // Called when favicon data is available from the history backend. |
| 44 void OnFaviconDataAvailable( | 44 void OnFaviconDataAvailable( |
| 45 FaviconService::Handle request_handle, | 45 FaviconService::Handle request_handle, |
| 46 const chrome::FaviconBitmapResult& bitmap_result); | 46 const chrome::FaviconBitmapResult& bitmap_result); |
| 47 | 47 |
| 48 CancelableTaskTracker cancelable_task_tracker_; | 48 base::CancelableTaskTracker cancelable_task_tracker_; |
| 49 | 49 |
| 50 // Map from request ID to DOM ID so we can make the appropriate callback when | 50 // Map from request ID to DOM ID so we can make the appropriate callback when |
| 51 // the favicon request comes back. This map exists because | 51 // the favicon request comes back. This map exists because |
| 52 // CancelableRequestConsumerTSimple only takes POD keys. | 52 // CancelableRequestConsumerTSimple only takes POD keys. |
| 53 std::map<int, std::string> dom_id_map_; | 53 std::map<int, std::string> dom_id_map_; |
| 54 // A counter to track ID numbers as we use them. | 54 // A counter to track ID numbers as we use them. |
| 55 int id_; | 55 int id_; |
| 56 | 56 |
| 57 // Raw PNG representation of the favicon to show when the favicon | 57 // Raw PNG representation of the favicon to show when the favicon |
| 58 // database doesn't have a favicon for a webpage. | 58 // database doesn't have a favicon for a webpage. |
| 59 scoped_refptr<base::RefCountedMemory> default_favicon_; | 59 scoped_refptr<base::RefCountedMemory> default_favicon_; |
| 60 | 60 |
| 61 // Manage retrieval of icons from apps. | 61 // Manage retrieval of icons from apps. |
| 62 scoped_ptr<ExtensionIconColorManager> app_icon_color_manager_; | 62 scoped_ptr<ExtensionIconColorManager> app_icon_color_manager_; |
| 63 | 63 |
| 64 DISALLOW_COPY_AND_ASSIGN(FaviconWebUIHandler); | 64 DISALLOW_COPY_AND_ASSIGN(FaviconWebUIHandler); |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 #endif // CHROME_BROWSER_UI_WEBUI_NTP_FAVICON_WEBUI_HANDLER_H_ | 67 #endif // CHROME_BROWSER_UI_WEBUI_NTP_FAVICON_WEBUI_HANDLER_H_ |
| OLD | NEW |