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

Unified Diff: chrome/renderer/render_view.h

Issue 1075011: Chrome side of adding search support to Pepper. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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
« no previous file with comments | « no previous file | chrome/renderer/render_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_view.h
===================================================================
--- chrome/renderer/render_view.h (revision 42528)
+++ chrome/renderer/render_view.h (working copy)
@@ -423,6 +423,9 @@
// Called when a plugin has crashed.
void PluginCrashed(const FilePath& plugin_path);
+ // Called to indicate that there are no matching search results.
+ void ReportNoFindInPageResults(int request_id);
+
#if defined(OS_MACOSX)
void RegisterPluginDelegate(WebPluginDelegateProxy* delegate);
void UnregisterPluginDelegate(WebPluginDelegateProxy* delegate);
@@ -619,8 +622,6 @@
bool new_navigation,
const GURL& display_url,
const std::string& security_info);
- void OnStopFinding(const ViewMsg_StopFinding_Params& params);
- void OnFindReplyAck();
void OnUpdateTargetURLAck();
void OnUndo();
void OnRedo();
@@ -642,6 +643,8 @@
void OnSetupDevToolsClient();
void OnCancelDownload(int32 download_id);
void OnFind(int request_id, const string16&, const WebKit::WebFindOptions&);
+ void OnStopFinding(const ViewMsg_StopFinding_Params& params);
+ void OnFindReplyAck();
void OnDeterminePageLanguage();
void OnSetContentSettingsForLoadingHost(
std::string host, const ContentSettings& content_settings);
@@ -890,6 +893,9 @@
// Resets the |content_blocked_| array.
void ClearBlockedContentSettings();
+ // Should only be called if this object wraps a PluginDocument.
+ webkit_glue::WebPluginDelegate* GetDelegateForPluginDocument();
+
// Bitwise-ORed set of extra bindings that have been enabled. See
// BindingsPolicy for details.
int enabled_bindings_;
« no previous file with comments | « no previous file | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698