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

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: got rid of ref counting on user authenticator 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
« no previous file with comments | « remoting/host/desktop_environment.cc ('k') | remoting/host/event_executor_linux.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/event_executor.h
diff --git a/remoting/host/event_executor.h b/remoting/host/event_executor.h
index f99339b465108f5b4585d539457fd47789994e75..449c670f61e185bbd55c5eeb9c68fa0647d8b2b7 100644
--- a/remoting/host/event_executor.h
+++ b/remoting/host/event_executor.h
@@ -1,23 +1,24 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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_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
« no previous file with comments | « remoting/host/desktop_environment.cc ('k') | remoting/host/event_executor_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698