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

Unified Diff: content/browser/renderer_host/render_view_host.h

Issue 7972006: Removed sending of the content IPC messages from chrome and replaced them with corresponding APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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: content/browser/renderer_host/render_view_host.h
===================================================================
--- content/browser/renderer_host/render_view_host.h (revision 101850)
+++ content/browser/renderer_host/render_view_host.h (working copy)
@@ -254,16 +254,6 @@
int ExecuteJavascriptInWebFrameNotifyResult(const string16& frame_xpath,
const string16& jscript);
- // Edit operations.
- void Undo();
- void Redo();
- void Cut();
- void Copy();
- void CopyToFindPboard();
- void Paste();
- void Delete();
- void SelectAll();
-
// Notifies the RenderView that the JavaScript message that was shown was
// closed by the user.
void JavaScriptDialogClosed(IPC::Message* reply_msg,
@@ -384,6 +374,18 @@
int renderer_id,
GURL* url);
+ // Sets the alternate error page URL (link doctor) for the renderer process.
+ void SetAltErrorPageURL(const GURL& url);
+
+ // Asks the renderer to exit fullscreen
+ void ExitFullscreen();
+
+ // Passes a list of Webkit preferences to the renderer.
+ void UpdateWebkitPreferences(const WebPreferences& prefs);
+
+ // Tells the renderer to clear the focused node (if any).
+ void ClearFocusedNode();
+
// NOTE: Do not add functions that just send an IPC message that are called in
// one or two places. Have the caller send the IPC message directly.

Powered by Google App Engine
This is Rietveld 408576698