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

Unified Diff: remoting/protocol/input_stub.cc

Issue 6724033: Remove authenticated_ fields from stubs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address reviewer's comments. 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/protocol/input_stub.h ('k') | remoting/protocol/protocol_mock_objects.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/input_stub.cc
diff --git a/remoting/protocol/input_stub.cc b/remoting/protocol/input_stub.cc
deleted file mode 100644
index a9e542769f0e69fc598bd7724a946853cda48266..0000000000000000000000000000000000000000
--- a/remoting/protocol/input_stub.cc
+++ /dev/null
@@ -1,33 +0,0 @@
-// 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;
-}
-
-void InputStub::OnClosed() {
- authenticated_ = false;
-}
-
-bool InputStub::authenticated() {
- return authenticated_;
-}
-
-} // namespace protocol
-} // namespace remoting
« no previous file with comments | « remoting/protocol/input_stub.h ('k') | remoting/protocol/protocol_mock_objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698