Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Interface for an object that receives clipboard events. | |
| 6 // This interface handles some event messages defined in event.proto. | |
|
Wez
2012/05/23 00:01:57
This comment is out-of-date.
garykac
2012/05/26 01:58:01
Done.
| |
| 7 | |
| 8 #ifndef REMOTING_PROTOCOL_CURSOR_SHAPE_STUB_H_ | |
| 9 #define REMOTING_PROTOCOL_CURSOR_SHAPE_STUB_H_ | |
| 10 | |
| 11 #include "base/basictypes.h" | |
| 12 | |
| 13 namespace remoting { | |
| 14 namespace protocol { | |
| 15 | |
| 16 class CursorShapeInfo; | |
| 17 | |
| 18 class CursorShapeStub { | |
| 19 public: | |
| 20 CursorShapeStub() {} | |
| 21 virtual ~CursorShapeStub() {} | |
| 22 | |
| 23 virtual void SetCursorShape(const CursorShapeInfo& cursor_shape) = 0; | |
| 24 | |
| 25 private: | |
| 26 DISALLOW_COPY_AND_ASSIGN(CursorShapeStub); | |
| 27 }; | |
| 28 | |
| 29 } // namespace protocol | |
| 30 } // namespace remoting | |
| 31 | |
| 32 #endif // REMOTING_PROTOCOL_CURSOR_SHAPE_STUB_H_ | |
| OLD | NEW |