summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormlamouri <mlamouri@chromium.org>2014-09-24 02:46:40 -0700
committerCommit bot <commit-bot@chromium.org>2014-09-24 09:46:49 +0000
commit6d2d4f112f97032a362b74cfbc0bfd4edc33554a (patch)
treefcfa6e1f6c44a5c8a0e368a13ebcad2c606b8602
parenta974dbfc240a9ae6fd7131eee234a5b9ea0e896f (diff)
downloadchromium_src-6d2d4f112f97032a362b74cfbc0bfd4edc33554a.zip
chromium_src-6d2d4f112f97032a362b74cfbc0bfd4edc33554a.tar.gz
chromium_src-6d2d4f112f97032a362b74cfbc0bfd4edc33554a.tar.bz2
Remove some dead favicon code in RenderViewImpl.
BUG=None Review URL: https://codereview.chromium.org/580363005 Cr-Commit-Position: refs/heads/master@{#296375}
-rw-r--r--content/renderer/render_view_impl.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
index 69ed96b..3593d96 100644
--- a/content/renderer/render_view_impl.h
+++ b/content/renderer/render_view_impl.h
@@ -125,7 +125,6 @@ namespace content {
class BrowserPluginManager;
class DevToolsAgent;
class DocumentState;
-class FaviconHelper;
class HistoryController;
class HistoryEntry;
class ImageResourceFetcher;
@@ -754,20 +753,6 @@ class CONTENT_EXPORT RenderViewImpl
// Check whether the preferred size has changed.
void CheckPreferredSize();
- // This callback is triggered when DownloadFavicon completes, either
- // succesfully or with a failure. See DownloadFavicon for more
- // details.
- void DidDownloadFavicon(ImageResourceFetcher* fetcher,
- const SkBitmap& image);
-
- // Requests to download a favicon image. When done, the RenderView is notified
- // by way of DidDownloadFavicon. Returns true if the request was successfully
- // started, false otherwise. id is used to uniquely identify the request and
- // passed back to the DidDownloadFavicon method. If the image has multiple
- // frames, the frame whose size is image_size is returned. If the image
- // doesn't have a frame at the specified size, the first is returned.
- bool DownloadFavicon(int id, const GURL& image_url, int image_size);
-
// Called to get the WebPlugin to handle find requests in the document.
// Returns NULL if there is no such WebPlugin.
blink::WebPlugin* GetWebPluginForFind();