| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 ANDROID_WEBVIEW_BROWSER_ICON_HELPER_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_ICON_HELPER_H_ |
| 6 #define ANDROID_WEBVIEW_BROWSER_ICON_HELPER_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_ICON_HELPER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include "base/containers/hash_tables.h" | 9 #include "base/containers/hash_tables.h" |
| 10 #include "content/public/browser/web_contents_observer.h" | 10 #include "content/public/browser/web_contents_observer.h" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 virtual ~Listener() {} | 36 virtual ~Listener() {} |
| 37 }; | 37 }; |
| 38 | 38 |
| 39 explicit IconHelper(content::WebContents* web_contents); | 39 explicit IconHelper(content::WebContents* web_contents); |
| 40 virtual ~IconHelper(); | 40 virtual ~IconHelper(); |
| 41 | 41 |
| 42 void SetListener(Listener* listener); | 42 void SetListener(Listener* listener); |
| 43 | 43 |
| 44 // From WebContentsObserver | 44 // From WebContentsObserver |
| 45 virtual void DidUpdateFaviconURL( | 45 virtual void DidUpdateFaviconURL( |
| 46 const std::vector<content::FaviconURL>& candidates) OVERRIDE; | 46 const std::vector<content::FaviconURL>& candidates) override; |
| 47 virtual void DidStartNavigationToPendingEntry( | 47 virtual void DidStartNavigationToPendingEntry( |
| 48 const GURL& url, | 48 const GURL& url, |
| 49 content::NavigationController::ReloadType reload_type) OVERRIDE; | 49 content::NavigationController::ReloadType reload_type) override; |
| 50 | 50 |
| 51 void DownloadFaviconCallback( | 51 void DownloadFaviconCallback( |
| 52 int id, | 52 int id, |
| 53 int http_status_code, | 53 int http_status_code, |
| 54 const GURL& image_url, | 54 const GURL& image_url, |
| 55 const std::vector<SkBitmap>& bitmaps, | 55 const std::vector<SkBitmap>& bitmaps, |
| 56 const std::vector<gfx::Size>& original_bitmap_sizes); | 56 const std::vector<gfx::Size>& original_bitmap_sizes); |
| 57 | 57 |
| 58 private: | 58 private: |
| 59 void MarkUnableToDownloadFavicon(const GURL& icon_url); | 59 void MarkUnableToDownloadFavicon(const GURL& icon_url); |
| 60 bool WasUnableToDownloadFavicon(const GURL& icon_url) const; | 60 bool WasUnableToDownloadFavicon(const GURL& icon_url) const; |
| 61 void ClearUnableToDownloadFavicons(); | 61 void ClearUnableToDownloadFavicons(); |
| 62 | 62 |
| 63 Listener* listener_; | 63 Listener* listener_; |
| 64 | 64 |
| 65 typedef uint32 MissingFaviconURLHash; | 65 typedef uint32 MissingFaviconURLHash; |
| 66 base::hash_set<MissingFaviconURLHash> missing_favicon_urls_; | 66 base::hash_set<MissingFaviconURLHash> missing_favicon_urls_; |
| 67 | 67 |
| 68 DISALLOW_COPY_AND_ASSIGN(IconHelper); | 68 DISALLOW_COPY_AND_ASSIGN(IconHelper); |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 } // namespace android_webview | 71 } // namespace android_webview |
| 72 | 72 |
| 73 #endif // ANDROID_WEBVIEW_BROWSER_ICON_HELPER_H_ | 73 #endif // ANDROID_WEBVIEW_BROWSER_ICON_HELPER_H_ |
| OLD | NEW |