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

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

Issue 8787004: Make ChildProcessHost be used through an interface in content/public, instead of by inheritence. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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_data_remover_impl.cc ('k') | content/browser/plugin_process_host.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/browser/plugin_loader_posix.h" 5 #include "content/browser/plugin_loader_posix.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "base/message_loop_proxy.h" 9 #include "base/message_loop_proxy.h"
10 #include "base/metrics/histogram.h" 10 #include "base/metrics/histogram.h"
11 #include "content/common/child_process_host.h" 11 #include "content/common/child_process_host_impl.h"
12 #include "content/common/utility_messages.h" 12 #include "content/common/utility_messages.h"
13 #include "content/public/browser/browser_thread.h" 13 #include "content/public/browser/browser_thread.h"
14 #include "webkit/plugins/npapi/plugin_list.h" 14 #include "webkit/plugins/npapi/plugin_list.h"
15 15
16 using content::BrowserThread; 16 using content::BrowserThread;
17 using content::ChildProcessHost;
17 18
18 PluginLoaderPosix::PluginLoaderPosix() 19 PluginLoaderPosix::PluginLoaderPosix()
19 : next_load_index_(0) { 20 : next_load_index_(0) {
20 } 21 }
21 22
22 void PluginLoaderPosix::LoadPlugins( 23 void PluginLoaderPosix::LoadPlugins(
23 scoped_refptr<base::MessageLoopProxy> target_loop, 24 scoped_refptr<base::MessageLoopProxy> target_loop,
24 const PluginService::GetPluginsCallback& callback) { 25 const PluginService::GetPluginsCallback& callback) {
25 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); 26 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
26 27
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 170
170 PluginLoaderPosix::PendingCallback::PendingCallback( 171 PluginLoaderPosix::PendingCallback::PendingCallback(
171 scoped_refptr<base::MessageLoopProxy> loop, 172 scoped_refptr<base::MessageLoopProxy> loop,
172 const PluginService::GetPluginsCallback& cb) 173 const PluginService::GetPluginsCallback& cb)
173 : target_loop(loop), 174 : target_loop(loop),
174 callback(cb) { 175 callback(cb) {
175 } 176 }
176 177
177 PluginLoaderPosix::PendingCallback::~PendingCallback() { 178 PluginLoaderPosix::PendingCallback::~PendingCallback() {
178 } 179 }
OLDNEW
« no previous file with comments | « content/browser/plugin_data_remover_impl.cc ('k') | content/browser/plugin_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698