| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef REMOTING_CLIENT_CLIENT_USER_INTERFACE_H_ | 5 #ifndef REMOTING_CLIENT_CLIENT_USER_INTERFACE_H_ |
| 6 #define REMOTING_CLIENT_CLIENT_USER_INTERFACE_H_ | 6 #define REMOTING_CLIENT_CLIENT_USER_INTERFACE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 12 #include "remoting/protocol/connection_to_host.h" | 11 #include "remoting/protocol/connection_to_host.h" |
| 13 #include "remoting/protocol/third_party_client_authenticator.h" | 12 #include "remoting/protocol/third_party_client_authenticator.h" |
| 14 | 13 |
| 15 namespace remoting { | 14 namespace remoting { |
| 16 | 15 |
| 17 namespace protocol { | 16 namespace protocol { |
| 18 class ClipboardStub; | 17 class ClipboardStub; |
| 19 class CursorShapeStub; | 18 class CursorShapeStub; |
| 20 class ExtensionMessage; | 19 class ExtensionMessage; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 // Get the view's ClipboardStub implementation. | 51 // Get the view's ClipboardStub implementation. |
| 53 virtual protocol::ClipboardStub* GetClipboardStub() = 0; | 52 virtual protocol::ClipboardStub* GetClipboardStub() = 0; |
| 54 | 53 |
| 55 // Get the view's CursorShapeStub implementation. | 54 // Get the view's CursorShapeStub implementation. |
| 56 virtual protocol::CursorShapeStub* GetCursorShapeStub() = 0; | 55 virtual protocol::CursorShapeStub* GetCursorShapeStub() = 0; |
| 57 }; | 56 }; |
| 58 | 57 |
| 59 } // namespace remoting | 58 } // namespace remoting |
| 60 | 59 |
| 61 #endif // REMOTING_CLIENT_CLIENT_USER_INTERFACE_H_ | 60 #endif // REMOTING_CLIENT_CLIENT_USER_INTERFACE_H_ |
| OLD | NEW |