| Index: chrome/browser/renderer_host/render_view_host.h
|
| diff --git a/chrome/browser/renderer_host/render_view_host.h b/chrome/browser/renderer_host/render_view_host.h
|
| index 1b4f37b970743bceac20a8d057d78b0987571192..88ff1df821dec0dd71d3159a41a1ce8e746aca69 100644
|
| --- a/chrome/browser/renderer_host/render_view_host.h
|
| +++ b/chrome/browser/renderer_host/render_view_host.h
|
| @@ -363,7 +363,7 @@ class RenderViewHost : public RenderWidgetHost {
|
|
|
| // Sets a property with the given name and value on the Web UI binding object.
|
| // Must call AllowWebUIBindings() on this renderer first.
|
| - void SetDOMUIProperty(const std::string& name, const std::string& value);
|
| + void SetWebUIProperty(const std::string& name, const std::string& value);
|
|
|
| // Tells the renderer view to focus the first (last if reverse is true) node.
|
| void SetInitialFocus(bool reverse);
|
| @@ -579,7 +579,7 @@ class RenderViewHost : public RenderWidgetHost {
|
| void OnMsgDidContentsPreferredSizeChange(const gfx::Size& new_size);
|
| void OnMsgDomOperationResponse(const std::string& json_string,
|
| int automation_id);
|
| - void OnMsgDOMUISend(const GURL& source_url,
|
| + void OnMsgWebUISend(const GURL& source_url,
|
| const std::string& message,
|
| const std::string& content);
|
| void OnMsgForwardMessageToExternalHost(const std::string& message,
|
|
|