| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SOFTWARE_VIDEO_RENDERER_H_ | 5 #ifndef REMOTING_CLIENT_SOFTWARE_VIDEO_RENDERER_H_ |
| 6 #define REMOTING_CLIENT_SOFTWARE_VIDEO_RENDERER_H_ | 6 #define REMOTING_CLIENT_SOFTWARE_VIDEO_RENDERER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 10 #include "base/macros.h" |
| 8 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 11 #include "base/threading/thread_checker.h" | 14 #include "base/threading/thread_checker.h" |
| 12 #include "remoting/client/video_renderer.h" | 15 #include "remoting/client/video_renderer.h" |
| 13 #include "remoting/protocol/performance_tracker.h" | 16 #include "remoting/protocol/performance_tracker.h" |
| 14 #include "remoting/protocol/video_stub.h" | 17 #include "remoting/protocol/video_stub.h" |
| 15 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" | 18 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" |
| 16 | 19 |
| 17 namespace base { | 20 namespace base { |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 base::ThreadChecker thread_checker_; | 75 base::ThreadChecker thread_checker_; |
| 73 | 76 |
| 74 base::WeakPtrFactory<SoftwareVideoRenderer> weak_factory_; | 77 base::WeakPtrFactory<SoftwareVideoRenderer> weak_factory_; |
| 75 | 78 |
| 76 DISALLOW_COPY_AND_ASSIGN(SoftwareVideoRenderer); | 79 DISALLOW_COPY_AND_ASSIGN(SoftwareVideoRenderer); |
| 77 }; | 80 }; |
| 78 | 81 |
| 79 } // namespace remoting | 82 } // namespace remoting |
| 80 | 83 |
| 81 #endif // REMOTING_CLIENT_SOFTWARE_VIDEO_RENDERER_H_ | 84 #endif // REMOTING_CLIENT_SOFTWARE_VIDEO_RENDERER_H_ |
| OLD | NEW |