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. |