OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chrome/renderer/plugins/chrome_plugin_placeholder.h" | 5 #include "chrome/renderer/plugins/chrome_plugin_placeholder.h" |
6 | 6 |
7 #include "base/strings/string_number_conversions.h" | 7 #include "base/strings/string_number_conversions.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "base/values.h" | 9 #include "base/values.h" |
10 #include "chrome/common/prerender_messages.h" | 10 #include "chrome/common/prerender_messages.h" |
11 #include "chrome/common/render_messages.h" | 11 #include "chrome/common/render_messages.h" |
12 #include "chrome/grit/generated_resources.h" | 12 #include "chrome/grit/generated_resources.h" |
13 #include "chrome/grit/renderer_resources.h" | 13 #include "chrome/grit/renderer_resources.h" |
14 #include "chrome/renderer/chrome_content_renderer_client.h" | 14 #include "chrome/renderer/chrome_content_renderer_client.h" |
15 #include "chrome/renderer/custom_menu_commands.h" | 15 #include "chrome/renderer/custom_menu_commands.h" |
16 #include "chrome/renderer/plugins/plugin_uma.h" | 16 #include "chrome/renderer/plugins/plugin_uma.h" |
| 17 #include "components/content_settings/content/common/content_settings_messages.h
" |
17 #include "content/app/strings/grit/content_strings.h" | 18 #include "content/app/strings/grit/content_strings.h" |
18 #include "content/public/common/context_menu_params.h" | 19 #include "content/public/common/context_menu_params.h" |
19 #include "content/public/renderer/render_frame.h" | 20 #include "content/public/renderer/render_frame.h" |
20 #include "content/public/renderer/render_thread.h" | 21 #include "content/public/renderer/render_thread.h" |
21 #include "gin/handle.h" | 22 #include "gin/handle.h" |
22 #include "gin/object_template_builder.h" | 23 #include "gin/object_template_builder.h" |
23 #include "third_party/WebKit/public/web/WebDocument.h" | 24 #include "third_party/WebKit/public/web/WebDocument.h" |
24 #include "third_party/WebKit/public/web/WebInputEvent.h" | 25 #include "third_party/WebKit/public/web/WebInputEvent.h" |
25 #include "third_party/WebKit/public/web/WebKit.h" | 26 #include "third_party/WebKit/public/web/WebKit.h" |
26 #include "third_party/WebKit/public/web/WebLocalFrame.h" | 27 #include "third_party/WebKit/public/web/WebLocalFrame.h" |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 v8::Handle<v8::Object> global = context->Global(); | 378 v8::Handle<v8::Object> global = context->Global(); |
378 global->Set(gin::StringToV8(isolate, "plugin"), | 379 global->Set(gin::StringToV8(isolate, "plugin"), |
379 gin::CreateHandle(isolate, this).ToV8()); | 380 gin::CreateHandle(isolate, this).ToV8()); |
380 } | 381 } |
381 | 382 |
382 gin::ObjectTemplateBuilder ChromePluginPlaceholder::GetObjectTemplateBuilder( | 383 gin::ObjectTemplateBuilder ChromePluginPlaceholder::GetObjectTemplateBuilder( |
383 v8::Isolate* isolate) { | 384 v8::Isolate* isolate) { |
384 return LoadablePluginPlaceholder::GetObjectTemplateBuilder(isolate).SetMethod( | 385 return LoadablePluginPlaceholder::GetObjectTemplateBuilder(isolate).SetMethod( |
385 "openAboutPlugins", &ChromePluginPlaceholder::OpenAboutPluginsCallback); | 386 "openAboutPlugins", &ChromePluginPlaceholder::OpenAboutPluginsCallback); |
386 } | 387 } |
OLD | NEW |