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

Side by Side Diff: blimp/client/support/compositor/blimp_context_provider.h

Issue 2274323002: Expose Blimp dependencies to the embedder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@khushal_baseline_1
Patch Set: Fix linux build break Created 4 years, 3 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_CONTEXT_PROVIDER_H_ 5 #ifndef BLIMP_CLIENT_SUPPORT_COMPOSITOR_BLIMP_CONTEXT_PROVIDER_H_
6 #define BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_CONTEXT_PROVIDER_H_ 6 #define BLIMP_CLIENT_SUPPORT_COMPOSITOR_BLIMP_CONTEXT_PROVIDER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/synchronization/lock.h" 13 #include "base/synchronization/lock.h"
14 #include "base/threading/thread_checker.h" 14 #include "base/threading/thread_checker.h"
15 #include "cc/output/context_provider.h" 15 #include "cc/output/context_provider.h"
16 #include "gpu/command_buffer/client/gl_in_process_context.h" 16 #include "gpu/command_buffer/client/gl_in_process_context.h"
(...skipping 19 matching lines...) Expand all
36 gpu::Capabilities ContextCapabilities() override; 36 gpu::Capabilities ContextCapabilities() override;
37 gpu::gles2::GLES2Interface* ContextGL() override; 37 gpu::gles2::GLES2Interface* ContextGL() override;
38 gpu::ContextSupport* ContextSupport() override; 38 gpu::ContextSupport* ContextSupport() override;
39 class GrContext* GrContext() override; 39 class GrContext* GrContext() override;
40 void InvalidateGrContext(uint32_t state) override; 40 void InvalidateGrContext(uint32_t state) override;
41 base::Lock* GetLock() override; 41 base::Lock* GetLock() override;
42 void DeleteCachedResources() override; 42 void DeleteCachedResources() override;
43 void SetLostContextCallback( 43 void SetLostContextCallback(
44 const LostContextCallback& lost_context_callback) override; 44 const LostContextCallback& lost_context_callback) override;
45 45
46 // Gives the GL internal format that should be used for calling CopyTexImage2D
47 // on the default framebuffer.
48 uint32_t GetCopyTextureInternalFormat();
49
50 protected: 46 protected:
51 BlimpContextProvider(gfx::AcceleratedWidget widget, 47 BlimpContextProvider(gfx::AcceleratedWidget widget,
52 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager); 48 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager);
53 ~BlimpContextProvider() override; 49 ~BlimpContextProvider() override;
54 50
55 private: 51 private:
56 void OnLostContext(); 52 void OnLostContext();
57 53
58 base::ThreadChecker main_thread_checker_; 54 base::ThreadChecker main_thread_checker_;
59 base::ThreadChecker context_thread_checker_; 55 base::ThreadChecker context_thread_checker_;
60 56
61 std::unique_ptr<gpu::GLInProcessContext> context_; 57 std::unique_ptr<gpu::GLInProcessContext> context_;
62 std::unique_ptr<skia_bindings::GrContextForGLES2Interface> gr_context_; 58 std::unique_ptr<skia_bindings::GrContextForGLES2Interface> gr_context_;
63 59
64 LostContextCallback lost_context_callback_; 60 LostContextCallback lost_context_callback_;
65 61
66 DISALLOW_COPY_AND_ASSIGN(BlimpContextProvider); 62 DISALLOW_COPY_AND_ASSIGN(BlimpContextProvider);
67 }; 63 };
68 64
69 } // namespace client 65 } // namespace client
70 } // namespace blimp 66 } // namespace blimp
71 67
72 #endif // BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_CONTEXT_PROVIDER_H_ 68 #endif // BLIMP_CLIENT_SUPPORT_COMPOSITOR_BLIMP_CONTEXT_PROVIDER_H_
OLDNEW
« no previous file with comments | « blimp/client/support/compositor/BUILD.gn ('k') | blimp/client/support/compositor/blimp_context_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698