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

Unified Diff: components/mus/public/cpp/gles2_context.h

Issue 2007813003: Remove Mojo GLES2 API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/mus/public/cpp/context_provider.h ('k') | components/mus/public/cpp/lib/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/public/cpp/gles2_context.h
diff --git a/components/mus/public/cpp/gles2_context.h b/components/mus/public/cpp/gles2_context.h
index 805e667506d41dcd76046d87cb78f0027ee9ab4e..f2239b280a6936921ae3df8fbf94205651c70ba5 100644
--- a/components/mus/public/cpp/gles2_context.h
+++ b/components/mus/public/cpp/gles2_context.h
@@ -13,9 +13,6 @@
#include "base/macros.h"
#include "components/mus/public/cpp/lib/command_buffer_client_impl.h"
#include "gpu/command_buffer/client/gles2_implementation.h"
-#include "mojo/public/c/gles2/gles2.h"
-
-struct MojoGLES2ContextPrivate {};
namespace gpu {
class TransferBuffer;
@@ -27,12 +24,10 @@ class GLES2Implementation;
namespace mus {
-class GLES2Context : public MojoGLES2ContextPrivate {
+class GLES2Context {
public:
explicit GLES2Context(const std::vector<int32_t>& attribs,
- mojo::ScopedMessagePipeHandle command_buffer_handle,
- MojoGLES2ContextLost lost_callback,
- void* closure);
+ mojo::ScopedMessagePipeHandle command_buffer_handle);
virtual ~GLES2Context();
bool Initialize();
@@ -42,14 +37,10 @@ class GLES2Context : public MojoGLES2ContextPrivate {
gpu::ContextSupport* context_support() const { return implementation_.get(); }
private:
- void OnLostContext();
-
CommandBufferClientImpl command_buffer_;
std::unique_ptr<gpu::gles2::GLES2CmdHelper> gles2_helper_;
std::unique_ptr<gpu::TransferBuffer> transfer_buffer_;
std::unique_ptr<gpu::gles2::GLES2Implementation> implementation_;
- MojoGLES2ContextLost lost_callback_;
- void* closure_;
DISALLOW_COPY_AND_ASSIGN(GLES2Context);
};
« no previous file with comments | « components/mus/public/cpp/context_provider.h ('k') | components/mus/public/cpp/lib/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698