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_CLIENT_GL_RENDERER_H_ | 5 #ifndef REMOTING_CLIENT_DISPLAY_GL_RENDERER_H_ |
6 #define REMOTING_CLIENT_GL_RENDERER_H_ | 6 #define REMOTING_CLIENT_DISPLAY_GL_RENDERER_H_ |
7 | 7 |
8 #include <queue> | 8 #include <queue> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "base/threading/thread_checker.h" | 13 #include "base/threading/thread_checker.h" |
14 #include "remoting/client/gl_cursor.h" | 14 #include "remoting/client/display/gl_cursor.h" |
15 #include "remoting/client/gl_cursor_feedback.h" | 15 #include "remoting/client/display/gl_cursor_feedback.h" |
16 #include "remoting/client/gl_desktop.h" | 16 #include "remoting/client/display/gl_desktop.h" |
17 #include "remoting/proto/control.pb.h" | 17 #include "remoting/proto/control.pb.h" |
18 | 18 |
19 namespace webrtc { | 19 namespace webrtc { |
20 class DesktopFrame; | 20 class DesktopFrame; |
21 } // namespace webrtc | 21 } // namespace webrtc |
22 | 22 |
23 namespace remoting { | 23 namespace remoting { |
24 | 24 |
25 namespace protocol { | 25 namespace protocol { |
26 class CursorShapeInfo; | 26 class CursorShapeInfo; |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 | 127 |
128 base::ThreadChecker thread_checker_; | 128 base::ThreadChecker thread_checker_; |
129 base::WeakPtr<GlRenderer> weak_ptr_; | 129 base::WeakPtr<GlRenderer> weak_ptr_; |
130 base::WeakPtrFactory<GlRenderer> weak_factory_; | 130 base::WeakPtrFactory<GlRenderer> weak_factory_; |
131 | 131 |
132 DISALLOW_COPY_AND_ASSIGN(GlRenderer); | 132 DISALLOW_COPY_AND_ASSIGN(GlRenderer); |
133 }; | 133 }; |
134 | 134 |
135 } // namespace remoting | 135 } // namespace remoting |
136 | 136 |
137 #endif // REMOTING_CLIENT_GL_RENDERER_H_ | 137 #endif // REMOTING_CLIENT_DISPLAY_GL_RENDERER_H_ |
OLD | NEW |