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

Unified Diff: chrome/service/service_process.h

Issue 6955010: Remove the Remoting Host component from Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove an errant include. Created 9 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/service/service_ipc_server.cc ('k') | chrome/service/service_process.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/service_process.h
diff --git a/chrome/service/service_process.h b/chrome/service/service_process.h
index f82cda51a656886e0e0f35a66f8a08e3611802c3..8d316b13df1eba83c32434131811abb7e9fc9981 100644
--- a/chrome/service/service_process.h
+++ b/chrome/service/service_process.h
@@ -14,7 +14,6 @@
#include "base/threading/thread.h"
#include "base/synchronization/waitable_event.h"
#include "chrome/service/cloud_print/cloud_print_proxy.h"
-#include "chrome/service/remoting/chromoting_host_manager.h"
class ServiceProcessPrefs;
class ServiceIPCServer;
@@ -30,8 +29,7 @@ class CommandLine;
// The ServiceProcess does not inherit from ChildProcess because this
// process can live independently of the browser process.
-class ServiceProcess : public CloudPrintProxy::Client,
- public remoting::ChromotingHostManager::Observer {
+class ServiceProcess : public CloudPrintProxy::Client {
public:
ServiceProcess();
~ServiceProcess();
@@ -91,17 +89,6 @@ class ServiceProcess : public CloudPrintProxy::Client,
virtual void OnCloudPrintProxyEnabled(bool persist_state);
virtual void OnCloudPrintProxyDisabled(bool persist_state);
- // ChromotingHostManager::Observer interface.
- virtual void OnChromotingHostEnabled();
- virtual void OnChromotingHostDisabled();
-
-#if defined(ENABLE_REMOTING)
- // Return the reference to the chromoting host only if it has started.
- remoting::ChromotingHostManager* remoting_host_manager() {
- return remoting_host_manager_;
- }
-#endif
-
ServiceURLRequestContextGetter* GetServiceURLRequestContextGetter();
private:
@@ -139,10 +126,6 @@ class ServiceProcess : public CloudPrintProxy::Client,
scoped_refptr<ServiceURLRequestContextGetter> request_context_getter_;
-#if defined(ENABLE_REMOTING)
- scoped_refptr<remoting::ChromotingHostManager> remoting_host_manager_;
-#endif
-
DISALLOW_COPY_AND_ASSIGN(ServiceProcess);
};
« no previous file with comments | « chrome/service/service_ipc_server.cc ('k') | chrome/service/service_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698