| Index: content/browser/web_contents/web_contents_impl.h
 | 
| diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h
 | 
| index 1040a3b983972adcd31d20311e09eccab1259882..108ef731e392c3baec3db7318b2101c55922440d 100644
 | 
| --- a/content/browser/web_contents/web_contents_impl.h
 | 
| +++ b/content/browser/web_contents/web_contents_impl.h
 | 
| @@ -858,11 +858,6 @@ class CONTENT_EXPORT WebContentsImpl
 | 
|    void OnBrowserPluginMessage(RenderFrameHost* render_frame_host,
 | 
|                                const IPC::Message& message);
 | 
|  #endif  // defined(ENABLE_PLUGINS)
 | 
| -  void OnDidDownloadImage(int id,
 | 
| -                          int http_status_code,
 | 
| -                          const GURL& image_url,
 | 
| -                          const std::vector<SkBitmap>& bitmaps,
 | 
| -                          const std::vector<gfx::Size>& original_bitmap_sizes);
 | 
|    void OnUpdateFaviconURL(const std::vector<FaviconURL>& candidates);
 | 
|    void OnFirstVisuallyNonEmptyPaint();
 | 
|    void OnMediaPlayingNotification(int64 player_cookie,
 | 
| @@ -1244,10 +1239,6 @@ class CONTENT_EXPORT WebContentsImpl
 | 
|    // completed making layout changes to effect an exit from fullscreen mode.
 | 
|    bool fullscreen_widget_had_focus_at_shutdown_;
 | 
|  
 | 
| -  // Maps the ids of pending image downloads to their callbacks
 | 
| -  typedef std::map<int, ImageDownloadCallback> ImageDownloadMap;
 | 
| -  ImageDownloadMap image_download_map_;
 | 
| -
 | 
|    // Whether this WebContents is responsible for displaying a subframe in a
 | 
|    // different process from its parent page.
 | 
|    bool is_subframe_;
 | 
| 
 |