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

Side by Side Diff: content/renderer/webgraphicscontext3d_provider_impl.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « content/renderer/web_ui_runner.h ('k') | content/renderer/websharedworker_proxy.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 CONTENT_RENDERER_WEBGRAPHICSCONTEXT3D_PROVIDER_IMPL_H_ 5 #ifndef CONTENT_RENDERER_WEBGRAPHICSCONTEXT3D_PROVIDER_IMPL_H_
6 #define CONTENT_RENDERER_WEBGRAPHICSCONTEXT3D_PROVIDER_IMPL_H_ 6 #define CONTENT_RENDERER_WEBGRAPHICSCONTEXT3D_PROVIDER_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "third_party/WebKit/public/platform/WebGraphicsContext3DProvider.h" 11 #include "third_party/WebKit/public/platform/WebGraphicsContext3DProvider.h"
12 12
13 namespace webkit { 13 namespace webkit {
14 namespace gpu { 14 namespace gpu {
15 class ContextProviderWebContext; 15 class ContextProviderWebContext;
16 } // namespace webkit 16 } // namespace webkit
17 } // namespace gpu 17 } // namespace gpu
18 18
19 namespace content { 19 namespace content {
20 20
21 class CONTENT_EXPORT WebGraphicsContext3DProviderImpl 21 class CONTENT_EXPORT WebGraphicsContext3DProviderImpl
22 : public NON_EXPORTED_BASE(blink::WebGraphicsContext3DProvider) { 22 : public NON_EXPORTED_BASE(blink::WebGraphicsContext3DProvider) {
23 public: 23 public:
24 explicit WebGraphicsContext3DProviderImpl( 24 explicit WebGraphicsContext3DProviderImpl(
25 scoped_refptr<webkit::gpu::ContextProviderWebContext> provider); 25 scoped_refptr<webkit::gpu::ContextProviderWebContext> provider);
26 virtual ~WebGraphicsContext3DProviderImpl(); 26 virtual ~WebGraphicsContext3DProviderImpl();
27 27
28 // WebGraphicsContext3DProvider implementation. 28 // WebGraphicsContext3DProvider implementation.
29 virtual blink::WebGraphicsContext3D* context3d() OVERRIDE; 29 virtual blink::WebGraphicsContext3D* context3d() override;
30 virtual GrContext* grContext() OVERRIDE; 30 virtual GrContext* grContext() override;
31 31
32 private: 32 private:
33 scoped_refptr<webkit::gpu::ContextProviderWebContext> provider_; 33 scoped_refptr<webkit::gpu::ContextProviderWebContext> provider_;
34 }; 34 };
35 35
36 } // namespace content 36 } // namespace content
37 37
38 #endif // CONTENT_RENDERER_WEBGRAPHICSCONTEXT3D_PROVIDER_IMPL_H_ 38 #endif // CONTENT_RENDERER_WEBGRAPHICSCONTEXT3D_PROVIDER_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/web_ui_runner.h ('k') | content/renderer/websharedworker_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698