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

Unified Diff: remoting/host/client_session.h

Issue 12594009: Converted LocalInputMonitor into a SessionController instance. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CR feedback. Created 7 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/client_session.h
diff --git a/remoting/host/client_session.h b/remoting/host/client_session.h
index 101f23a264b38da050281cdb5e8211689a97a742..dcee393504ee52ca181f33059f7c9f93fbfa1c55 100644
--- a/remoting/host/client_session.h
+++ b/remoting/host/client_session.h
@@ -121,6 +121,7 @@ class ClientSession
// SessionController::Delegate interface.
virtual void DisconnectSession() OVERRIDE;
virtual void OnLocalMouseMoved(const SkIPoint& position) OVERRIDE;
+ virtual void PauseSession(bool pause) OVERRIDE;
protocol::ConnectionToClient* connection() const {
return connection_.get();
@@ -130,10 +131,6 @@ class ClientSession
bool is_authenticated() { return auth_input_filter_.enabled(); }
- // Disable handling of input events from this client. If the client has any
- // keys or mouse buttons pressed then these will be released.
- void SetDisableInputs(bool disable_inputs);
-
private:
// Creates a proxy for sending clipboard events to the client.
scoped_ptr<protocol::ClipboardStub> CreateClipboardProxy();

Powered by Google App Engine
This is Rietveld 408576698