| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_PROTOCOL_FRAME_CONSUMER_H_ | 5 #ifndef REMOTING_PROTOCOL_FRAME_CONSUMER_H_ |
| 6 #define REMOTING_PROTOCOL_FRAME_CONSUMER_H_ | 6 #define REMOTING_PROTOCOL_FRAME_CONSUMER_H_ |
| 7 | 7 |
| 8 #include "base/callback_forward.h" |
| 8 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/scoped_ptr.h" |
| 9 | 11 |
| 10 namespace webrtc { | 12 namespace webrtc { |
| 11 class DesktopFrame; | 13 class DesktopFrame; |
| 12 class DesktopSize; | 14 class DesktopSize; |
| 13 } // namespace webrtc | 15 } // namespace webrtc |
| 14 | 16 |
| 15 namespace remoting { | 17 namespace remoting { |
| 16 namespace protocol { | 18 namespace protocol { |
| 17 | 19 |
| 18 class FrameConsumer { | 20 class FrameConsumer { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 37 virtual ~FrameConsumer() {} | 39 virtual ~FrameConsumer() {} |
| 38 | 40 |
| 39 private: | 41 private: |
| 40 DISALLOW_COPY_AND_ASSIGN(FrameConsumer); | 42 DISALLOW_COPY_AND_ASSIGN(FrameConsumer); |
| 41 }; | 43 }; |
| 42 | 44 |
| 43 } // namespace protocol | 45 } // namespace protocol |
| 44 } // namespace remoting | 46 } // namespace remoting |
| 45 | 47 |
| 46 #endif // REMOTING_PROTOCOL_FRAME_CONSUMER_H_ | 48 #endif // REMOTING_PROTOCOL_FRAME_CONSUMER_H_ |
| OLD | NEW |