| 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_FRAME_CONSUMER_H_ | 5 #ifndef REMOTING_CLIENT_FRAME_CONSUMER_H_ |
| 6 #define REMOTING_CLIENT_FRAME_CONSUMER_H_ | 6 #define REMOTING_CLIENT_FRAME_CONSUMER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/macros.h" |
| 9 | 9 |
| 10 namespace webrtc { | 10 namespace webrtc { |
| 11 class DesktopFrame; | 11 class DesktopFrame; |
| 12 class DesktopRect; | 12 class DesktopRect; |
| 13 class DesktopRegion; | 13 class DesktopRegion; |
| 14 class DesktopSize; | 14 class DesktopSize; |
| 15 class DesktopVector; | 15 class DesktopVector; |
| 16 } // namespace webrtc | 16 } // namespace webrtc |
| 17 | 17 |
| 18 namespace remoting { | 18 namespace remoting { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 38 FrameConsumer() {} | 38 FrameConsumer() {} |
| 39 virtual ~FrameConsumer() {} | 39 virtual ~FrameConsumer() {} |
| 40 | 40 |
| 41 private: | 41 private: |
| 42 DISALLOW_COPY_AND_ASSIGN(FrameConsumer); | 42 DISALLOW_COPY_AND_ASSIGN(FrameConsumer); |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 } // namespace remoting | 45 } // namespace remoting |
| 46 | 46 |
| 47 #endif // REMOTING_CLIENT_FRAME_CONSUMER_H_ | 47 #endif // REMOTING_CLIENT_FRAME_CONSUMER_H_ |
| OLD | NEW |