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

Side by Side Diff: content/common/gpu/client/context_provider_command_buffer.h

Issue 630853003: Replace OVERRIDE and FINAL with override and final in content/common/[a-s]* (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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_COMMON_GPU_CLIENT_CONTEXT_PROVIDER_COMMAND_BUFFER 5 #ifndef CONTENT_COMMON_GPU_CLIENT_CONTEXT_PROVIDER_COMMAND_BUFFER
6 #define CONTENT_COMMON_GPU_CLIENT_CONTEXT_PROVIDER_COMMAND_BUFFER 6 #define CONTENT_COMMON_GPU_CLIENT_CONTEXT_PROVIDER_COMMAND_BUFFER
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/synchronization/lock.h" 10 #include "base/synchronization/lock.h"
(...skipping 16 matching lines...) Expand all
27 class CONTENT_EXPORT ContextProviderCommandBuffer 27 class CONTENT_EXPORT ContextProviderCommandBuffer
28 : NON_EXPORTED_BASE(public webkit::gpu::ContextProviderWebContext) { 28 : NON_EXPORTED_BASE(public webkit::gpu::ContextProviderWebContext) {
29 public: 29 public:
30 static scoped_refptr<ContextProviderCommandBuffer> Create( 30 static scoped_refptr<ContextProviderCommandBuffer> Create(
31 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context3d, 31 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context3d,
32 const std::string& debug_name); 32 const std::string& debug_name);
33 33
34 CommandBufferProxyImpl* GetCommandBufferProxy(); 34 CommandBufferProxyImpl* GetCommandBufferProxy();
35 35
36 // ContextProviderWebContext implementation. 36 // ContextProviderWebContext implementation.
37 virtual WebGraphicsContext3DCommandBufferImpl* WebContext3D() OVERRIDE; 37 virtual WebGraphicsContext3DCommandBufferImpl* WebContext3D() override;
38 38
39 // cc::ContextProvider implementation. 39 // cc::ContextProvider implementation.
40 virtual bool BindToCurrentThread() OVERRIDE; 40 virtual bool BindToCurrentThread() override;
41 virtual gpu::gles2::GLES2Interface* ContextGL() OVERRIDE; 41 virtual gpu::gles2::GLES2Interface* ContextGL() override;
42 virtual gpu::ContextSupport* ContextSupport() OVERRIDE; 42 virtual gpu::ContextSupport* ContextSupport() override;
43 virtual class GrContext* GrContext() OVERRIDE; 43 virtual class GrContext* GrContext() override;
44 virtual Capabilities ContextCapabilities() OVERRIDE; 44 virtual Capabilities ContextCapabilities() override;
45 virtual bool IsContextLost() OVERRIDE; 45 virtual bool IsContextLost() override;
46 virtual void VerifyContexts() OVERRIDE; 46 virtual void VerifyContexts() override;
47 virtual void DeleteCachedResources() OVERRIDE; 47 virtual void DeleteCachedResources() override;
48 virtual bool DestroyedOnMainThread() OVERRIDE; 48 virtual bool DestroyedOnMainThread() override;
49 virtual void SetLostContextCallback( 49 virtual void SetLostContextCallback(
50 const LostContextCallback& lost_context_callback) OVERRIDE; 50 const LostContextCallback& lost_context_callback) override;
51 virtual void SetMemoryPolicyChangedCallback( 51 virtual void SetMemoryPolicyChangedCallback(
52 const MemoryPolicyChangedCallback& memory_policy_changed_callback) 52 const MemoryPolicyChangedCallback& memory_policy_changed_callback)
53 OVERRIDE; 53 override;
54 54
55 protected: 55 protected:
56 ContextProviderCommandBuffer( 56 ContextProviderCommandBuffer(
57 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context3d, 57 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context3d,
58 const std::string& debug_name); 58 const std::string& debug_name);
59 virtual ~ContextProviderCommandBuffer(); 59 virtual ~ContextProviderCommandBuffer();
60 60
61 void OnLostContext(); 61 void OnLostContext();
62 void OnMemoryAllocationChanged(const gpu::MemoryAllocation& allocation); 62 void OnMemoryAllocationChanged(const gpu::MemoryAllocation& allocation);
63 63
(...skipping 15 matching lines...) Expand all
79 base::Lock main_thread_lock_; 79 base::Lock main_thread_lock_;
80 bool destroyed_; 80 bool destroyed_;
81 81
82 class LostContextCallbackProxy; 82 class LostContextCallbackProxy;
83 scoped_ptr<LostContextCallbackProxy> lost_context_callback_proxy_; 83 scoped_ptr<LostContextCallbackProxy> lost_context_callback_proxy_;
84 }; 84 };
85 85
86 } // namespace content 86 } // namespace content
87 87
88 #endif // CONTENT_COMMON_GPU_CLIENT_CONTEXT_PROVIDER_COMMAND_BUFFER 88 #endif // CONTENT_COMMON_GPU_CLIENT_CONTEXT_PROVIDER_COMMAND_BUFFER
OLDNEW
« no previous file with comments | « content/common/gpu/client/command_buffer_proxy_impl.h ('k') | content/common/gpu/client/gl_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698