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/json/json_writer.h" | 7 #include "base/json/json_writer.h" |
8 #include "base/stl_util.h" | 8 #include "base/stl_util.h" |
9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
10 #include "base/values.h" | 10 #include "base/values.h" |
11 #include "content/browser/child_process_security_policy_impl.h" | 11 #include "content/browser/child_process_security_policy_impl.h" |
12 #include "content/browser/renderer_host/dip_util.h" | 12 #include "content/browser/renderer_host/dip_util.h" |
13 #include "content/browser/renderer_host/render_process_host_impl.h" | 13 #include "content/browser/renderer_host/render_process_host_impl.h" |
14 #include "content/browser/renderer_host/render_view_host_impl.h" | 14 #include "content/browser/renderer_host/render_view_host_impl.h" |
15 #include "content/browser/web_contents/web_contents_impl.h" | 15 #include "content/browser/web_contents/web_contents_impl.h" |
16 #include "content/common/view_messages.h" | 16 #include "content/common/view_messages.h" |
17 #include "content/public/browser/content_browser_client.h" | 17 #include "content/public/browser/content_browser_client.h" |
18 #include "content/public/browser/web_contents_delegate.h" | 18 #include "content/public/browser/web_contents_delegate.h" |
19 #include "content/public/browser/web_contents_view.h" | 19 #include "content/public/browser/web_contents_view.h" |
20 #include "content/public/browser/web_ui_controller.h" | 20 #include "content/public/browser/web_ui_controller.h" |
21 #include "content/public/browser/web_ui_controller_factory.h" | 21 #include "content/public/browser/web_ui_controller_factory.h" |
22 #include "content/public/browser/web_ui_message_handler.h" | 22 #include "content/public/browser/web_ui_message_handler.h" |
23 #include "content/public/common/bindings_policy.h" | 23 #include "content/public/common/bindings_policy.h" |
24 #include "content/public/common/content_client.h" | 24 #include "content/public/common/content_client.h" |
25 | 25 |
| 26 using content::ChildProcessSecurityPolicyImpl; |
26 using content::RenderViewHostImpl; | 27 using content::RenderViewHostImpl; |
27 using content::WebContents; | 28 using content::WebContents; |
28 using content::WebUIController; | 29 using content::WebUIController; |
29 using content::WebUIMessageHandler; | 30 using content::WebUIMessageHandler; |
30 | 31 |
31 namespace content { | 32 namespace content { |
32 | 33 |
33 const WebUI::TypeID WebUI::kNoWebUI = NULL; | 34 const WebUI::TypeID WebUI::kNoWebUI = NULL; |
34 | 35 |
35 // static | 36 // static |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 handler->set_web_ui(this); | 266 handler->set_web_ui(this); |
266 handler->RegisterMessages(); | 267 handler->RegisterMessages(); |
267 handlers_.push_back(handler); | 268 handlers_.push_back(handler); |
268 } | 269 } |
269 | 270 |
270 void WebUIImpl::ExecuteJavascript(const string16& javascript) { | 271 void WebUIImpl::ExecuteJavascript(const string16& javascript) { |
271 static_cast<RenderViewHostImpl*>( | 272 static_cast<RenderViewHostImpl*>( |
272 web_contents_->GetRenderViewHost())->ExecuteJavascriptInWebFrame( | 273 web_contents_->GetRenderViewHost())->ExecuteJavascriptInWebFrame( |
273 ASCIIToUTF16(frame_xpath_), javascript); | 274 ASCIIToUTF16(frame_xpath_), javascript); |
274 } | 275 } |
OLD | NEW |