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

Unified Diff: remoting/host/desktop_process.h

Issue 10910075: [Chromoting] Adding the desktop integration binary to the host installation on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix preprocessor conditions in .WXS & rebased Created 8 years, 3 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 | « remoting/branding_Chromium ('k') | remoting/host/desktop_process.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/desktop_process.h
diff --git a/remoting/host/desktop_process.h b/remoting/host/desktop_process.h
new file mode 100644
index 0000000000000000000000000000000000000000..123cac12287cacbc4dce59a871615b7aa494b0f4
--- /dev/null
+++ b/remoting/host/desktop_process.h
@@ -0,0 +1,27 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef REMOTING_HOST_DESKTOP_PROCESS_H_
+#define REMOTING_HOST_DESKTOP_PROCESS_H_
+
+#include "base/basictypes.h"
+#include "base/compiler_specific.h"
+
+namespace remoting {
+
+class DesktopProcess {
+ public:
+ DesktopProcess();
+ ~DesktopProcess();
+
+ // Runs the desktop process.
+ int Run();
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(DesktopProcess);
+};
+
+} // namespace remoting
+
+#endif // REMOTING_HOST_DESKTOP_PROCESS_H_
« no previous file with comments | « remoting/branding_Chromium ('k') | remoting/host/desktop_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698