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 |