| Index: chrome/renderer/render_view.h
|
| diff --git a/chrome/renderer/render_view.h b/chrome/renderer/render_view.h
|
| index b6d48a052a71d572731ab8e7a6b47c369badb5ed..0883cc2fc38246301e016cc5e9e3180534eeb5b9 100644
|
| --- a/chrome/renderer/render_view.h
|
| +++ b/chrome/renderer/render_view.h
|
| @@ -338,6 +338,10 @@ class RenderView : public RenderWidget,
|
| void EvaluateScript(const std::wstring& frame_xpath,
|
| const std::wstring& jscript);
|
|
|
| + // Inserts a string of CSS in a particular frame.
|
| + void InsertCSS(const std::wstring& frame_xpath,
|
| + const std::string& css);
|
| +
|
| // Called when the Javascript debugger is no longer attached.
|
| // This is called from within the renderer, not via an IPC message.
|
| void OnDebugDetach();
|
| @@ -506,6 +510,8 @@ class RenderView : public RenderWidget,
|
|
|
| void OnScriptEvalRequest(const std::wstring& frame_xpath,
|
| const std::wstring& jscript);
|
| + void OnCSSInsertRequest(const std::wstring& frame_xpath,
|
| + const std::string& css);
|
| void OnAddMessageToConsole(const std::wstring& frame_xpath,
|
| const std::wstring& msg,
|
| ConsoleMessageLevel level);
|
|
|