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

Side by Side Diff: mojo/cc/context_provider_mojo.h

Issue 668663006: Standardize usage of virtual/override/final in mojo/ (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 | « mojo/bindings/js/waiting_callback.h ('k') | mojo/cc/direct_output_surface.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 MOJO_CC_CONTEXT_PROVIDER_MOJO_H_ 5 #ifndef MOJO_CC_CONTEXT_PROVIDER_MOJO_H_
6 #define MOJO_CC_CONTEXT_PROVIDER_MOJO_H_ 6 #define MOJO_CC_CONTEXT_PROVIDER_MOJO_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "cc/output/context_provider.h" 9 #include "cc/output/context_provider.h"
10 #include "mojo/public/c/gles2/gles2.h" 10 #include "mojo/public/c/gles2/gles2.h"
11 #include "mojo/public/cpp/system/core.h" 11 #include "mojo/public/cpp/system/core.h"
12 12
13 namespace mojo { 13 namespace mojo {
14 14
15 class ContextProviderMojo : public cc::ContextProvider { 15 class ContextProviderMojo : public cc::ContextProvider {
16 public: 16 public:
17 explicit ContextProviderMojo(ScopedMessagePipeHandle command_buffer_handle); 17 explicit ContextProviderMojo(ScopedMessagePipeHandle command_buffer_handle);
18 18
19 // cc::ContextProvider implementation. 19 // cc::ContextProvider implementation.
20 virtual bool BindToCurrentThread() override; 20 bool BindToCurrentThread() override;
21 virtual gpu::gles2::GLES2Interface* ContextGL() override; 21 gpu::gles2::GLES2Interface* ContextGL() override;
22 virtual gpu::ContextSupport* ContextSupport() override; 22 gpu::ContextSupport* ContextSupport() override;
23 virtual class GrContext* GrContext() override; 23 class GrContext* GrContext() override;
24 virtual Capabilities ContextCapabilities() override; 24 Capabilities ContextCapabilities() override;
25 virtual bool IsContextLost() override; 25 bool IsContextLost() override;
26 virtual void VerifyContexts() override {} 26 void VerifyContexts() override {}
27 virtual void DeleteCachedResources() override {} 27 void DeleteCachedResources() override {}
28 virtual bool DestroyedOnMainThread() override; 28 bool DestroyedOnMainThread() override;
29 virtual void SetLostContextCallback( 29 void SetLostContextCallback(
30 const LostContextCallback& lost_context_callback) override {} 30 const LostContextCallback& lost_context_callback) override {}
31 virtual void SetMemoryPolicyChangedCallback( 31 void SetMemoryPolicyChangedCallback(
32 const MemoryPolicyChangedCallback& memory_policy_changed_callback) 32 const MemoryPolicyChangedCallback& memory_policy_changed_callback)
33 override {} 33 override {}
34 34
35 protected: 35 protected:
36 friend class base::RefCountedThreadSafe<ContextProviderMojo>; 36 friend class base::RefCountedThreadSafe<ContextProviderMojo>;
37 virtual ~ContextProviderMojo(); 37 ~ContextProviderMojo() override;
38 38
39 private: 39 private:
40 static void ContextLostThunk(void* closure) { 40 static void ContextLostThunk(void* closure) {
41 static_cast<ContextProviderMojo*>(closure)->ContextLost(); 41 static_cast<ContextProviderMojo*>(closure)->ContextLost();
42 } 42 }
43 void ContextLost(); 43 void ContextLost();
44 44
45 cc::ContextProvider::Capabilities capabilities_; 45 cc::ContextProvider::Capabilities capabilities_;
46 ScopedMessagePipeHandle command_buffer_handle_; 46 ScopedMessagePipeHandle command_buffer_handle_;
47 MojoGLES2Context context_; 47 MojoGLES2Context context_;
48 bool context_lost_; 48 bool context_lost_;
49 49
50 DISALLOW_COPY_AND_ASSIGN(ContextProviderMojo); 50 DISALLOW_COPY_AND_ASSIGN(ContextProviderMojo);
51 }; 51 };
52 52
53 } // namespace mojo 53 } // namespace mojo
54 54
55 #endif // MOJO_CC_CONTEXT_PROVIDER_MOJO_H_ 55 #endif // MOJO_CC_CONTEXT_PROVIDER_MOJO_H_
OLDNEW
« no previous file with comments | « mojo/bindings/js/waiting_callback.h ('k') | mojo/cc/direct_output_surface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698