OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |