Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: remoting/client/gl_cursor.h

Issue 2196493002: [Chromoting] Unit Tests for GlRenderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge ToT Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <stdint.h>
Sergey Ulanov 2016/08/10 15:35:06 cstdint
Yuwei 2016/08/10 21:31:00 Done.
9
8 #include <array> 10 #include <array>
9 #include <memory> 11 #include <memory>
10 12
11 #include "base/macros.h" 13 #include "base/macros.h"
12 14
13 namespace remoting { 15 namespace remoting {
14 16
15 namespace protocol { 17 namespace protocol {
16 class CursorShapeInfo; 18 class CursorShapeInfo;
17 } // namespace protocol 19 } // namespace protocol
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 int current_cursor_hotspot_y_ = 0; 58 int current_cursor_hotspot_y_ = 0;
57 59
58 int cursor_x_ = 0; 60 int cursor_x_ = 0;
59 int cursor_y_ = 0; 61 int cursor_y_ = 0;
60 62
61 DISALLOW_COPY_AND_ASSIGN(GlCursor); 63 DISALLOW_COPY_AND_ASSIGN(GlCursor);
62 }; 64 };
63 65
64 } // namespace remoting 66 } // namespace remoting
65 #endif // REMOTING_CLIENT_OPENGL_GL_CURSOR_H_ 67 #endif // REMOTING_CLIENT_OPENGL_GL_CURSOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698