| 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_OPENGL_GL_CURSOR_H_ | 5 #ifndef REMOTING_CLIENT_OPENGL_GL_CURSOR_H_ |
| 6 #define REMOTING_CLIENT_OPENGL_GL_CURSOR_H_ | 6 #define REMOTING_CLIENT_OPENGL_GL_CURSOR_H_ |
| 7 | 7 |
| 8 #include <array> | 8 #include <array> |
| 9 #include <cstdint> |
| 9 #include <memory> | 10 #include <memory> |
| 10 | 11 |
| 11 #include "base/macros.h" | 12 #include "base/macros.h" |
| 12 | 13 |
| 13 namespace remoting { | 14 namespace remoting { |
| 14 | 15 |
| 15 namespace protocol { | 16 namespace protocol { |
| 16 class CursorShapeInfo; | 17 class CursorShapeInfo; |
| 17 } // namespace protocol | 18 } // namespace protocol |
| 18 | 19 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 int current_cursor_hotspot_y_ = 0; | 57 int current_cursor_hotspot_y_ = 0; |
| 57 | 58 |
| 58 int cursor_x_ = 0; | 59 int cursor_x_ = 0; |
| 59 int cursor_y_ = 0; | 60 int cursor_y_ = 0; |
| 60 | 61 |
| 61 DISALLOW_COPY_AND_ASSIGN(GlCursor); | 62 DISALLOW_COPY_AND_ASSIGN(GlCursor); |
| 62 }; | 63 }; |
| 63 | 64 |
| 64 } // namespace remoting | 65 } // namespace remoting |
| 65 #endif // REMOTING_CLIENT_OPENGL_GL_CURSOR_H_ | 66 #endif // REMOTING_CLIENT_OPENGL_GL_CURSOR_H_ |
| OLD | NEW |