| Index: chrome/renderer/render_view.cc
|
| diff --git a/chrome/renderer/render_view.cc b/chrome/renderer/render_view.cc
|
| index a94e122cd62dcc9f8da0cc1643b49e1f41675d17..2d0f78a91749a0322eadfdb2b50e688c4a01fc70 100644
|
| --- a/chrome/renderer/render_view.cc
|
| +++ b/chrome/renderer/render_view.cc
|
| @@ -1969,12 +1969,6 @@ void RenderView::OnAllowScriptToClose(bool script_can_close) {
|
| script_can_close_ = script_can_close;
|
| }
|
|
|
| -uint32 RenderView::GetCPBrowsingContext() {
|
| - uint32 context = 0;
|
| - Send(new ViewHostMsg_GetCPBrowsingContext(&context));
|
| - return context;
|
| -}
|
| -
|
| void RenderView::AddSearchProvider(
|
| const std::string& url,
|
| const ViewHostMsg_PageHasOSDD_Type& provider_type) {
|
| @@ -3459,7 +3453,6 @@ void RenderView::didClearWindowObject(WebFrame* frame) {
|
| GURL frame_url = frame->url();
|
| if (BindingsPolicy::is_web_ui_enabled(enabled_bindings_) &&
|
| (frame_url.SchemeIs(chrome::kChromeUIScheme) ||
|
| - frame_url.SchemeIs(chrome::kGearsScheme) ||
|
| frame_url.SchemeIs(chrome::kDataScheme))) {
|
| GetWebUIBindings()->set_message_sender(this);
|
| GetWebUIBindings()->set_routing_id(routing_id_);
|
| @@ -4000,16 +3993,6 @@ void RenderView::DidStopLoadingForPlugin() {
|
| didStopLoading();
|
| }
|
|
|
| -void RenderView::ShowModalHTMLDialogForPlugin(
|
| - const GURL& url,
|
| - const gfx::Size& size,
|
| - const std::string& json_arguments,
|
| - std::string* json_retval) {
|
| - SendAndRunNestedMessageLoop(new ViewHostMsg_ShowModalHTMLDialog(
|
| - routing_id_, url, size.width(), size.height(), json_arguments,
|
| - json_retval));
|
| -}
|
| -
|
| WebCookieJar* RenderView::GetCookieJar() {
|
| return &cookie_jar_;
|
| }
|
|
|