Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6036)

Unified Diff: chrome/browser/renderer_host/chrome_render_view_host_observer.h

Issue 21323003: The UI part of search-by-image search. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: address jam's comment Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/renderer_host/chrome_render_view_host_observer.h
===================================================================
--- chrome/browser/renderer_host/chrome_render_view_host_observer.h (revision 215313)
+++ 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,15 +35,18 @@
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 OnRequestThumbnailForContextNodeACK(const SkBitmap& bitmap);
+
Profile* profile_;
chrome_browser_net::Predictor* predictor_;
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/renderer_host/chrome_render_view_host_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698