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

Side by Side Diff: content/renderer/browser_plugin/browser_plugin.cc

Issue 15822010: Update refernces to Blink's Platform API (content) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/renderer/browser_plugin/browser_plugin.h" 5 #include "content/renderer/browser_plugin/browser_plugin.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/json/json_string_value_serializer.h" 8 #include "base/json/json_string_value_serializer.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "base/string_number_conversions.h" 10 #include "base/string_number_conversions.h"
11 #include "base/string_util.h" 11 #include "base/string_util.h"
12 #include "base/utf_string_conversions.h" 12 #include "base/utf_string_conversions.h"
13 #include "content/common/browser_plugin/browser_plugin_constants.h" 13 #include "content/common/browser_plugin/browser_plugin_constants.h"
14 #include "content/common/browser_plugin/browser_plugin_messages.h" 14 #include "content/common/browser_plugin/browser_plugin_messages.h"
15 #include "content/common/view_messages.h" 15 #include "content/common/view_messages.h"
16 #include "content/public/common/content_client.h" 16 #include "content/public/common/content_client.h"
17 #include "content/public/common/content_switches.h" 17 #include "content/public/common/content_switches.h"
18 #include "content/public/renderer/content_renderer_client.h" 18 #include "content/public/renderer/content_renderer_client.h"
19 #include "content/renderer/browser_plugin/browser_plugin_bindings.h" 19 #include "content/renderer/browser_plugin/browser_plugin_bindings.h"
20 #include "content/renderer/browser_plugin/browser_plugin_compositing_helper.h" 20 #include "content/renderer/browser_plugin/browser_plugin_compositing_helper.h"
21 #include "content/renderer/browser_plugin/browser_plugin_manager.h" 21 #include "content/renderer/browser_plugin/browser_plugin_manager.h"
22 #include "content/renderer/render_process_impl.h" 22 #include "content/renderer/render_process_impl.h"
23 #include "content/renderer/render_thread_impl.h" 23 #include "content/renderer/render_thread_impl.h"
24 #include "content/renderer/v8_value_converter_impl.h" 24 #include "content/renderer/v8_value_converter_impl.h"
25 #include "skia/ext/platform_canvas.h" 25 #include "skia/ext/platform_canvas.h"
26 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" 26 #include "third_party/WebKit/public/platform/WebRect.h"
27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h"
28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMCustomEvent.h" 28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMCustomEvent.h"
29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" 30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h"
31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
32 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" 32 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginContainer.h" 33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginContainer.h"
34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" 34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h"
35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptSource.h" 35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScriptSource.h"
36 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 36 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
(...skipping 1553 matching lines...) Expand 10 before | Expand all | Expand 10 after
1590 const WebKit::WebMouseEvent& event) { 1590 const WebKit::WebMouseEvent& event) {
1591 browser_plugin_manager()->Send( 1591 browser_plugin_manager()->Send(
1592 new BrowserPluginHostMsg_HandleInputEvent(render_view_routing_id_, 1592 new BrowserPluginHostMsg_HandleInputEvent(render_view_routing_id_,
1593 instance_id_, 1593 instance_id_,
1594 plugin_rect_, 1594 plugin_rect_,
1595 &event)); 1595 &event));
1596 return true; 1596 return true;
1597 } 1597 }
1598 1598
1599 } // namespace content 1599 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/android/content_detector.cc ('k') | content/renderer/browser_plugin/browser_plugin_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698