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

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

Issue 8277018: Move content_switches to content\public\common. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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
« no previous file with comments | « content/renderer/media/audio_renderer_impl.cc ('k') | content/renderer/render_process_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_plugin_delegate_impl.h" 5 #include "content/renderer/pepper_plugin_delegate_impl.h"
6 6
7 #include <cmath> 7 #include <cmath>
8 #include <queue> 8 #include <queue>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/command_line.h" 12 #include "base/command_line.h"
13 #include "base/file_path.h" 13 #include "base/file_path.h"
14 #include "base/file_util_proxy.h" 14 #include "base/file_util_proxy.h"
15 #include "base/logging.h" 15 #include "base/logging.h"
16 #include "base/memory/scoped_ptr.h" 16 #include "base/memory/scoped_ptr.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/task.h" 19 #include "base/task.h"
20 #include "base/time.h" 20 #include "base/time.h"
21 #include "content/common/child_process.h" 21 #include "content/common/child_process.h"
22 #include "content/common/child_thread.h" 22 #include "content/common/child_thread.h"
23 #include "content/common/content_switches.h"
24 #include "content/common/file_system/file_system_dispatcher.h" 23 #include "content/common/file_system/file_system_dispatcher.h"
25 #include "content/common/file_system_messages.h" 24 #include "content/common/file_system_messages.h"
26 #include "content/common/media/audio_messages.h" 25 #include "content/common/media/audio_messages.h"
27 #include "content/common/pepper_file_messages.h" 26 #include "content/common/pepper_file_messages.h"
28 #include "content/common/pepper_plugin_registry.h" 27 #include "content/common/pepper_plugin_registry.h"
29 #include "content/common/pepper_messages.h" 28 #include "content/common/pepper_messages.h"
30 #include "content/common/quota_dispatcher.h" 29 #include "content/common/quota_dispatcher.h"
31 #include "content/common/view_messages.h" 30 #include "content/common/view_messages.h"
31 #include "content/public/common/content_switches.h"
32 #include "content/public/renderer/content_renderer_client.h" 32 #include "content/public/renderer/content_renderer_client.h"
33 #include "content/renderer/gpu/command_buffer_proxy.h" 33 #include "content/renderer/gpu/command_buffer_proxy.h"
34 #include "content/renderer/gpu/gpu_channel_host.h" 34 #include "content/renderer/gpu/gpu_channel_host.h"
35 #include "content/renderer/gpu/renderer_gl_context.h" 35 #include "content/renderer/gpu/renderer_gl_context.h"
36 #include "content/renderer/gpu/webgraphicscontext3d_command_buffer_impl.h" 36 #include "content/renderer/gpu/webgraphicscontext3d_command_buffer_impl.h"
37 #include "content/renderer/media/audio_message_filter.h" 37 #include "content/renderer/media/audio_message_filter.h"
38 #include "content/renderer/media/video_capture_impl_manager.h" 38 #include "content/renderer/media/video_capture_impl_manager.h"
39 #include "content/renderer/p2p/p2p_transport_impl.h" 39 #include "content/renderer/p2p/p2p_transport_impl.h"
40 #include "content/renderer/pepper_platform_context_3d_impl.h" 40 #include "content/renderer/pepper_platform_context_3d_impl.h"
41 #include "content/renderer/pepper_platform_video_decoder_impl.h" 41 #include "content/renderer/pepper_platform_video_decoder_impl.h"
(...skipping 1700 matching lines...) Expand 10 before | Expand all | Expand 10 after
1742 1742
1743 int PepperPluginDelegateImpl::GetRoutingId() const { 1743 int PepperPluginDelegateImpl::GetRoutingId() const {
1744 return render_view_->routing_id(); 1744 return render_view_->routing_id();
1745 } 1745 }
1746 1746
1747 void PepperPluginDelegateImpl::PublishInitialPolicy( 1747 void PepperPluginDelegateImpl::PublishInitialPolicy(
1748 scoped_refptr<webkit::ppapi::PluginInstance> instance, 1748 scoped_refptr<webkit::ppapi::PluginInstance> instance,
1749 const std::string& policy) { 1749 const std::string& policy) {
1750 instance->HandlePolicyUpdate(policy); 1750 instance->HandlePolicyUpdate(policy);
1751 } 1751 }
OLDNEW
« no previous file with comments | « content/renderer/media/audio_renderer_impl.cc ('k') | content/renderer/render_process_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698