diff options
author | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-04 21:31:44 +0000 |
---|---|---|
committer | garykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-04 21:31:44 +0000 |
commit | f0a9d1b2f35d1a0ae2c532b86fb3fd78b1c5465b (patch) | |
tree | cdbb2dde6847f6f36f8a0f8f6fe33d0192382b7a /remoting/protocol/input_stub.cc | |
parent | 0e5eeb0f24d0874a2ff2e8f491d0d7fbd1921527 (diff) | |
download | chromium_src-f0a9d1b2f35d1a0ae2c532b86fb3fd78b1c5465b.zip chromium_src-f0a9d1b2f35d1a0ae2c532b86fb3fd78b1c5465b.tar.gz chromium_src-f0a9d1b2f35d1a0ae2c532b86fb3fd78b1c5465b.tar.bz2 |
Block event processing on host/client until the client has authenticated.
Input events:
* Client will not send them
* Host will not process them
Control events:
* Client will only process BeginSessionResponse
* Host will only process BeginSessionRequest
All other control messages will be ignored.
BUG=72466
TEST=manual+tests
Review URL: http://codereview.chromium.org/6594138
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76974 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/protocol/input_stub.cc')
-rw-r--r-- | remoting/protocol/input_stub.cc | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/remoting/protocol/input_stub.cc b/remoting/protocol/input_stub.cc new file mode 100644 index 0000000..8bb1ffb --- /dev/null +++ b/remoting/protocol/input_stub.cc @@ -0,0 +1,29 @@ +// Copyright (c) 2010 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. + +// Interface for a device that receives input events. +// This interface handles event messages defined in event.proto. + +#include "remoting/protocol/input_stub.h" + +namespace remoting { +namespace protocol { + + +InputStub::InputStub() : authenticated_(false) { +} + +InputStub::~InputStub() { +} + +void InputStub::OnAuthenticated() { + authenticated_ = true; +} + +bool InputStub::authenticated() { + return authenticated_; +} + +} // namespace protocol +} // namespace remoting |