| Index: content/browser/frame_host/render_frame_host_impl.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
|
| index dcf55958f0561770248de0e976f0dd777cd5b04c..2c433b330b399ed6ca4ddfaa8567f7361b0e80bb 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -131,6 +131,10 @@ void RenderFrameHostImpl::ExecuteCustomContextMenuCommand(
|
| Send(new FrameMsg_CustomContextMenuAction(routing_id_, context, action));
|
| }
|
|
|
| +void RenderFrameHostImpl::InsertCSS(const std::string& css) {
|
| + Send(new FrameMsg_CSSInsertRequest(routing_id_, css));
|
| +}
|
| +
|
| RenderViewHost* RenderFrameHostImpl::GetRenderViewHost() {
|
| return render_view_host_;
|
| }
|
|
|