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

Side by Side Diff: remoting/client/display/gl_cursor_feedback_texture.h

Issue 2614443003: Moving the GL implementation details into a sub folder for client display. (Closed)
Patch Set: Reverting the renderer.cc file. Created 3 years, 11 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_GL_CURSOR_FEEDBACK_TEXTURE_H_ 5 #ifndef REMOTING_CLIENT_DISPLAY_GL_CURSOR_FEEDBACK_TEXTURE_H_
6 #define REMOTING_CLIENT_GL_CURSOR_FEEDBACK_TEXTURE_H_ 6 #define REMOTING_CLIENT_DISPLAY_GL_CURSOR_FEEDBACK_TEXTURE_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/memory/singleton.h" 11 #include "base/memory/singleton.h"
12 12
13 namespace remoting { 13 namespace remoting {
14 14
15 // This is a singleton for generating and holding the the cursor feedback 15 // This is a singleton for generating and holding the the cursor feedback
16 // texture. 16 // texture.
(...skipping 10 matching lines...) Expand all
27 ~GlCursorFeedbackTexture(); 27 ~GlCursorFeedbackTexture();
28 28
29 friend struct base::DefaultSingletonTraits<GlCursorFeedbackTexture>; 29 friend struct base::DefaultSingletonTraits<GlCursorFeedbackTexture>;
30 30
31 std::vector<uint8_t> texture_; 31 std::vector<uint8_t> texture_;
32 32
33 DISALLOW_COPY_AND_ASSIGN(GlCursorFeedbackTexture); 33 DISALLOW_COPY_AND_ASSIGN(GlCursorFeedbackTexture);
34 }; 34 };
35 35
36 } // namespace remoting 36 } // namespace remoting
37 #endif // REMOTING_CLIENT_GL_CURSOR_FEEDBACK_TEXTURE_H_ 37 #endif // REMOTING_CLIENT_DISPLAY_GL_CURSOR_FEEDBACK_TEXTURE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698