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

Side by Side Diff: content/browser/plugin_service_impl.cc

Issue 9317074: Create an API around UtilityProcessHost and use that from chrome. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 years, 10 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/browser/plugin_loader_posix.cc ('k') | content/browser/utility_process_host.h » ('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) 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/plugin_service_impl.h" 5 #include "content/browser/plugin_service_impl.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
11 #include "base/message_loop.h" 11 #include "base/message_loop.h"
12 #include "base/message_loop_proxy.h" 12 #include "base/message_loop_proxy.h"
13 #include "base/path_service.h" 13 #include "base/path_service.h"
14 #include "base/string_util.h" 14 #include "base/string_util.h"
15 #include "base/synchronization/waitable_event.h" 15 #include "base/synchronization/waitable_event.h"
16 #include "base/threading/thread.h" 16 #include "base/threading/thread.h"
17 #include "base/utf_string_conversions.h" 17 #include "base/utf_string_conversions.h"
18 #include "base/values.h" 18 #include "base/values.h"
19 #include "content/browser/plugin_loader_posix.h" 19 #include "content/browser/plugin_loader_posix.h"
20 #include "content/browser/plugin_service_filter.h" 20 #include "content/browser/plugin_service_filter.h"
21 #include "content/browser/ppapi_plugin_process_host.h" 21 #include "content/browser/ppapi_plugin_process_host.h"
22 #include "content/browser/renderer_host/render_process_host_impl.h" 22 #include "content/browser/renderer_host/render_process_host_impl.h"
23 #include "content/browser/renderer_host/render_view_host.h" 23 #include "content/browser/renderer_host/render_view_host.h"
24 #include "content/browser/resource_context.h" 24 #include "content/browser/resource_context.h"
25 #include "content/browser/utility_process_host.h"
26 #include "content/common/pepper_plugin_registry.h" 25 #include "content/common/pepper_plugin_registry.h"
27 #include "content/common/plugin_messages.h" 26 #include "content/common/plugin_messages.h"
28 #include "content/common/utility_messages.h" 27 #include "content/common/utility_messages.h"
29 #include "content/common/view_messages.h" 28 #include "content/common/view_messages.h"
30 #include "content/public/browser/browser_thread.h" 29 #include "content/public/browser/browser_thread.h"
31 #include "content/public/browser/content_browser_client.h" 30 #include "content/public/browser/content_browser_client.h"
32 #include "content/public/browser/notification_service.h" 31 #include "content/public/browser/notification_service.h"
33 #include "content/public/browser/notification_types.h" 32 #include "content/public/browser/notification_types.h"
34 #include "content/public/common/content_switches.h" 33 #include "content/public/common/content_switches.h"
35 #include "content/public/common/process_type.h" 34 #include "content/public/common/process_type.h"
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after
658 plugin_list_->RegisterInternalPlugin(info, add_at_beginning); 657 plugin_list_->RegisterInternalPlugin(info, add_at_beginning);
659 } 658 }
660 659
661 string16 PluginServiceImpl::GetPluginGroupName(const std::string& plugin_name) { 660 string16 PluginServiceImpl::GetPluginGroupName(const std::string& plugin_name) {
662 return plugin_list_->GetPluginGroupName(plugin_name); 661 return plugin_list_->GetPluginGroupName(plugin_name);
663 } 662 }
664 663
665 webkit::npapi::PluginList* PluginServiceImpl::GetPluginList() { 664 webkit::npapi::PluginList* PluginServiceImpl::GetPluginList() {
666 return plugin_list_; 665 return plugin_list_;
667 } 666 }
OLDNEW
« no previous file with comments | « content/browser/plugin_loader_posix.cc ('k') | content/browser/utility_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698