diff options
author | dimich@chromium.org <dimich@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-29 05:32:02 +0000 |
---|---|---|
committer | dimich@chromium.org <dimich@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-29 05:32:02 +0000 |
commit | 41225fe51b815b70bdc6df2775fa3f36bd832171 (patch) | |
tree | 1dec8870af60ed80282d692a428969e6952dc853 /content/renderer/render_view_impl.h | |
parent | f7fc18bdc754687e9063edaf6728167e63ca3e95 (diff) | |
download | chromium_src-41225fe51b815b70bdc6df2775fa3f36bd832171.zip chromium_src-41225fe51b815b70bdc6df2775fa3f36bd832171.tar.gz chromium_src-41225fe51b815b70bdc6df2775fa3f36bd832171.tar.bz2 |
Split FaviconHelper in two: ImageLoadingHelper and FaviconHelper.
This is the first step of fixing http://crbug.com/196769.
The problem is that there are two types of users of Content::DownloadFavicon() - the favicon consumers and regular icons and images consumers. Recently, the otherwise-generic image download+decoding implementation regressed because it was assumed to be only used for favicon loading.
The proposed fix is to add a parameter to the method (enum, FAVICON/IMAGE) and rename it from DownloadFavicon to DownloadImage, to make sure the name corresponds to the impl/usage.
This is rename-only part, no additional parameter yet. The FaviconHelper class was split in 2, with new ImageLoadingHelper dealing with images.
BUG=196769
Review URL: https://chromiumcodereview.appspot.com/12780024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@191304 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/render_view_impl.h')
-rw-r--r-- | content/renderer/render_view_impl.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h index 28a6f1a..4473025 100644 --- a/content/renderer/render_view_impl.h +++ b/content/renderer/render_view_impl.h @@ -169,6 +169,7 @@ class RenderWidgetFullscreenPepper; class SpeechRecognitionDispatcher; class WebPluginDelegateProxy; struct CustomContextMenuContext; +struct FaviconURL; struct FileChooserParams; struct RenderViewImplParams; @@ -1186,6 +1187,13 @@ class CONTENT_EXPORT RenderViewImpl // If |url| is empty, show |fallback_url|. void UpdateTargetURL(const GURL& url, const GURL& fallback_url); + // Tells the browser what the new list of favicons for the webpage is. + void SendUpdateFaviconURL(const std::vector<FaviconURL>& urls); + + // Invoked from DidStopLoading(). Sends the current list of loaded favicons to + // the browser. + void DidStopLoadingIcons(); + // Coordinate conversion ----------------------------------------------------- gfx::RectF ClientRectToPhysicalWindowRect(const gfx::RectF& rect) const; @@ -1418,9 +1426,6 @@ class CONTENT_EXPORT RenderViewImpl // Mouse Lock dispatcher attached to this view. MouseLockDispatcher* mouse_lock_dispatcher_; - // Helper class to handle favicon changes. - FaviconHelper* favicon_helper_; - #if defined(OS_ANDROID) // Android Specific --------------------------------------------------------- |