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

Side by Side Diff: ui/gl/gl_context_stub_with_extensions.h

Issue 623293004: replace OVERRIDE and FINAL with override and final in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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
« no previous file with comments | « ui/gl/gl_context_stub.h ('k') | ui/gl/gl_fence_arb.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 UI_GL_GL_CONTEXT_STUB_WITH_EXTENSIONS_H_ 5 #ifndef UI_GL_GL_CONTEXT_STUB_WITH_EXTENSIONS_H_
6 #define UI_GL_GL_CONTEXT_STUB_WITH_EXTENSIONS_H_ 6 #define UI_GL_GL_CONTEXT_STUB_WITH_EXTENSIONS_H_
7 7
8 #include "ui/gl/gl_context_stub.h" 8 #include "ui/gl/gl_context_stub.h"
9 9
10 namespace gfx { 10 namespace gfx {
11 11
12 // Lightweight GLContext stub implementation that returns a constructed 12 // Lightweight GLContext stub implementation that returns a constructed
13 // extensions string. We use this to create a context that we can use to 13 // extensions string. We use this to create a context that we can use to
14 // initialize GL extensions with, without actually creating a platform context. 14 // initialize GL extensions with, without actually creating a platform context.
15 class GL_EXPORT GLContextStubWithExtensions : public gfx::GLContextStub { 15 class GL_EXPORT GLContextStubWithExtensions : public gfx::GLContextStub {
16 public: 16 public:
17 GLContextStubWithExtensions() {} 17 GLContextStubWithExtensions() {}
18 virtual std::string GetExtensions() OVERRIDE; 18 virtual std::string GetExtensions() override;
19 19
20 void AddExtensionsString(const char* extensions); 20 void AddExtensionsString(const char* extensions);
21 void SetGLVersionString(const char* version_str); 21 void SetGLVersionString(const char* version_str);
22 22
23 protected: 23 protected:
24 virtual std::string GetGLVersion() OVERRIDE; 24 virtual std::string GetGLVersion() override;
25 25
26 virtual ~GLContextStubWithExtensions() {} 26 virtual ~GLContextStubWithExtensions() {}
27 27
28 private: 28 private:
29 std::string extensions_; 29 std::string extensions_;
30 std::string version_str_; 30 std::string version_str_;
31 31
32 DISALLOW_COPY_AND_ASSIGN(GLContextStubWithExtensions); 32 DISALLOW_COPY_AND_ASSIGN(GLContextStubWithExtensions);
33 }; 33 };
34 34
35 } // namespace gfx 35 } // namespace gfx
36 36
37 #endif // UI_GL_GL_CONTEXT_STUB_WITH_EXTENSIONS_H_ 37 #endif // UI_GL_GL_CONTEXT_STUB_WITH_EXTENSIONS_H_
OLDNEW
« no previous file with comments | « ui/gl/gl_context_stub.h ('k') | ui/gl/gl_fence_arb.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698