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

Unified Diff: remoting/host/event_executor.h

Issue 9617027: Chromoting: Implemented security attention sequence (SAS) emulation on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CR feedback. Created 8 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 6051b362a3eb7656224330f39b16f80ea0a90524..94a99ff3e39c1c564e15cddbb48087c261838a05 100644
--- a/remoting/host/event_executor.h
+++ b/remoting/host/event_executor.h
@@ -9,6 +9,12 @@
class MessageLoop;
+namespace IPC {
+
+class ChannelProxy;
+
+} // namespace IPC
+
namespace remoting {
class Capturer;
@@ -16,8 +22,10 @@ class Capturer;
class EventExecutor : public protocol::InputStub {
public:
// Creates default event executor for the current platform.
- // Does not take ownership of |message_loop| or |capturer|.
+ // Does not take ownership of |message_loop|, |chromoting_session| or
+ // |capturer|.
static EventExecutor* Create(MessageLoop* message_loop,
+ IPC::ChannelProxy* chromoting_session,
Capturer* capturer);
};

Powered by Google App Engine
This is Rietveld 408576698