Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Side by Side Diff: content/browser/webui/web_ui_impl.cc

Issue 9473001: Extract minimal RenderViewHost interface for embedders, leaving (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for initial review. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/webui/web_ui_impl.h" 5 #include "content/browser/webui/web_ui_impl.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/json/json_writer.h" 8 #include "base/json/json_writer.h"
9 #include "base/stl_util.h" 9 #include "base/stl_util.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 // WebUIImpl, protected: ------------------------------------------------------- 254 // WebUIImpl, protected: -------------------------------------------------------
255 255
256 void WebUIImpl::AddMessageHandler(WebUIMessageHandler* handler) { 256 void WebUIImpl::AddMessageHandler(WebUIMessageHandler* handler) {
257 DCHECK(!handler->web_ui()); 257 DCHECK(!handler->web_ui());
258 handler->set_web_ui(this); 258 handler->set_web_ui(this);
259 handler->RegisterMessages(); 259 handler->RegisterMessages();
260 handlers_.push_back(handler); 260 handlers_.push_back(handler);
261 } 261 }
262 262
263 void WebUIImpl::ExecuteJavascript(const string16& javascript) { 263 void WebUIImpl::ExecuteJavascript(const string16& javascript) {
264 web_contents_->GetRenderViewHost()->ExecuteJavascriptInWebFrame( 264 static_cast<RenderViewHostImpl*>(
265 web_contents_->GetRenderViewHost())->ExecuteJavascriptInWebFrame(
265 ASCIIToUTF16(frame_xpath_), javascript); 266 ASCIIToUTF16(frame_xpath_), javascript);
266 } 267 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698