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

Unified Diff: chrome/service/service_utility_process_host.h

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/service/service_process_control.cc ('k') | chrome/service/service_utility_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/service_utility_process_host.h
===================================================================
--- chrome/service/service_utility_process_host.h (revision 112775)
+++ chrome/service/service_utility_process_host.h (working copy)
@@ -21,7 +21,6 @@
#include "content/public/common/child_process_host_delegate.h"
#include "printing/pdf_render_settings.h"
-class ChildProcessHost;
class CommandLine;
class ScopedTempDir;
@@ -29,6 +28,10 @@
class MessageLoopProxy;
} // namespace base
+namespace content {
+class ChildProcessHost;
+}
+
namespace printing {
class Emf;
struct PageRange;
@@ -135,7 +138,7 @@
const printing::PrinterCapsAndDefaults& caps_and_defaults);
void OnGetPrinterCapsAndDefaultsFailed(const std::string& printer_name);
- scoped_ptr<ChildProcessHost> child_process_host_;
+ scoped_ptr<content::ChildProcessHost> child_process_host_;
base::ProcessHandle handle_;
// A pointer to our client interface, who will be informed of progress.
scoped_refptr<Client> client_;
« no previous file with comments | « chrome/browser/service/service_process_control.cc ('k') | chrome/service/service_utility_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698