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/renderer/pepper/pepper_plugin_delegate_impl.h" | 5 #include "content/renderer/pepper/pepper_plugin_delegate_impl.h" |
6 | 6 |
7 #include <cmath> | 7 #include <cmath> |
8 #include <map> | 8 #include <map> |
9 #include <queue> | 9 #include <queue> |
10 | 10 |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/callback.h" | 12 #include "base/callback.h" |
13 #include "base/command_line.h" | 13 #include "base/command_line.h" |
14 #include "base/file_path.h" | 14 #include "base/file_path.h" |
15 #include "base/file_util_proxy.h" | 15 #include "base/file_util_proxy.h" |
16 #include "base/logging.h" | 16 #include "base/logging.h" |
17 #include "base/string_split.h" | 17 #include "base/string_split.h" |
18 #include "base/sync_socket.h" | 18 #include "base/sync_socket.h" |
19 #include "base/time.h" | 19 #include "base/time.h" |
20 #include "content/common/child_process.h" | 20 #include "content/common/child_process.h" |
21 #include "content/common/child_process_messages.h" | 21 #include "content/common/child_process_messages.h" |
22 #include "content/common/child_thread.h" | 22 #include "content/common/child_thread.h" |
23 #include "content/common/file_system/file_system_dispatcher.h" | 23 #include "content/common/fileapi/file_system_dispatcher.h" |
24 #include "content/common/file_system_messages.h" | 24 #include "content/common/fileapi/file_system_messages.h" |
25 #include "content/common/gpu/client/content_gl_context.h" | 25 #include "content/common/gpu/client/content_gl_context.h" |
26 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" | 26 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" |
27 #include "content/common/pepper_file_messages.h" | 27 #include "content/common/pepper_file_messages.h" |
28 #include "content/common/pepper_plugin_registry.h" | 28 #include "content/common/pepper_plugin_registry.h" |
29 #include "content/common/pepper_messages.h" | 29 #include "content/common/pepper_messages.h" |
30 #include "content/common/quota_dispatcher.h" | 30 #include "content/common/quota_dispatcher.h" |
31 #include "content/common/view_messages.h" | 31 #include "content/common/view_messages.h" |
32 #include "content/public/common/content_switches.h" | 32 #include "content/public/common/content_switches.h" |
33 #include "content/public/common/context_menu_params.h" | 33 #include "content/public/common/context_menu_params.h" |
34 #include "content/public/common/media_stream_request.h" | 34 #include "content/public/common/media_stream_request.h" |
(...skipping 1761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1796 render_view_->mouse_lock_dispatcher()->OnLockTargetDestroyed(target); | 1796 render_view_->mouse_lock_dispatcher()->OnLockTargetDestroyed(target); |
1797 delete target; | 1797 delete target; |
1798 mouse_lock_instances_.erase(it); | 1798 mouse_lock_instances_.erase(it); |
1799 } | 1799 } |
1800 } | 1800 } |
1801 | 1801 |
1802 webkit_glue::ClipboardClient* | 1802 webkit_glue::ClipboardClient* |
1803 PepperPluginDelegateImpl::CreateClipboardClient() const { | 1803 PepperPluginDelegateImpl::CreateClipboardClient() const { |
1804 return new RendererClipboardClient; | 1804 return new RendererClipboardClient; |
1805 } | 1805 } |
OLD | NEW |