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

Unified Diff: remoting/host/event_executor.h

Issue 6780014: Clean up remoting project (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a compile glitch on Windows Created 9 years, 9 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
Index: remoting/host/event_executor.h
diff --git a/remoting/host/event_executor.h b/remoting/host/event_executor.h
index f99339b465108f5b4585d539457fd47789994e75..86287884c2427bb4374e1df4e649f32179d15213 100644
--- a/remoting/host/event_executor.h
+++ b/remoting/host/event_executor.h
@@ -5,19 +5,20 @@
#ifndef REMOTING_HOST_EVENT_EXECUTOR_H_
#define REMOTING_HOST_EVENT_EXECUTOR_H_
+#include "remoting/protocol/input_stub.h"
+
class MessageLoopForUI;
namespace remoting {
class Capturer;
-namespace protocol {
-class InputStub;
-} // namespace protocol
-
-// Creates default event executor for the current platform.
-protocol::InputStub* CreateEventExecutor(MessageLoopForUI* message_loop,
- Capturer* capturer);
+class EventExecutor : public protocol::InputStub {
+ public:
+ // Creates default event executor for the current platform.
+ static EventExecutor* Create(MessageLoopForUI* message_loop,
+ Capturer* capturer);
+};
} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698