Chromium Code Reviews| Index: chrome/browser/renderer_host/chrome_render_view_host_observer.h |
| =================================================================== |
| --- chrome/browser/renderer_host/chrome_render_view_host_observer.h (revision 214862) |
| +++ chrome/browser/renderer_host/chrome_render_view_host_observer.h (working copy) |
| @@ -5,9 +5,12 @@ |
| #ifndef CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_VIEW_HOST_OBSERVER_H_ |
| #define CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_VIEW_HOST_OBSERVER_H_ |
| +#include <string> |
| + |
| #include "content/public/browser/render_view_host_observer.h" |
| class Profile; |
| +class SkBitmap; |
| namespace chrome_browser_net { |
| class Predictor; |
| @@ -32,14 +35,15 @@ |
| virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; |
| private: |
| - // Does extension-specific initialization when a new renderer process is |
| - // created by a RenderViewHost. |
| + // Does extension-specific initialization when a new renderer process is |
| + // created by a RenderViewHost. |
| void InitRenderViewForExtensions(); |
| // Gets the extension or app (if any) that is associated with the RVH. |
| const extensions::Extension* GetExtension(); |
| // Cleans up when a RenderViewHost is removed, or on destruction. |
| void RemoveRenderViewHostForExtensions(content::RenderViewHost* rvh); |
| void OnFocusedNodeTouched(bool editable); |
| + void OnGetImageThumbnail(const SkBitmap& bitmap); |
|
Avi (use Gerrit)
2013/08/01 05:33:03
Needs a comment.
Johnny(Jianning) Ding
2013/08/01 17:56:57
Done.
|
| Profile* profile_; |
| chrome_browser_net::Predictor* predictor_; |