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

Unified Diff: gpu/ipc/service/pass_through_image_transport_surface.h

Issue 1998723002: Move code in ui/gl/* from gfx:: to gl:: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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
Index: gpu/ipc/service/pass_through_image_transport_surface.h
diff --git a/gpu/ipc/service/pass_through_image_transport_surface.h b/gpu/ipc/service/pass_through_image_transport_surface.h
index 084b07c0b919d992f9f30102c9042df0371589b3..a75591d1ec2b6f7105c27a8f9e211d81c6364de3 100644
--- a/gpu/ipc/service/pass_through_image_transport_surface.h
+++ b/gpu/ipc/service/pass_through_image_transport_surface.h
@@ -22,14 +22,14 @@ class GpuCommandBufferStub;
// An implementation of ImageTransportSurface that implements GLSurface through
// GLSurfaceAdapter, thereby forwarding GLSurface methods through to it.
-class PassThroughImageTransportSurface : public gfx::GLSurfaceAdapter {
+class PassThroughImageTransportSurface : public gl::GLSurfaceAdapter {
public:
PassThroughImageTransportSurface(GpuChannelManager* manager,
GpuCommandBufferStub* stub,
- gfx::GLSurface* surface);
+ gl::GLSurface* surface);
// GLSurface implementation.
- bool Initialize(gfx::GLSurface::Format format) override;
+ bool Initialize(gl::GLSurface::Format format) override;
void Destroy() override;
gfx::SwapResult SwapBuffers() override;
void SwapBuffersAsync(const SwapCompletionCallback& callback) override;
@@ -42,7 +42,7 @@ class PassThroughImageTransportSurface : public gfx::GLSurfaceAdapter {
gfx::SwapResult CommitOverlayPlanes() override;
void CommitOverlayPlanesAsync(
const SwapCompletionCallback& callback) override;
- bool OnMakeCurrent(gfx::GLContext* context) override;
+ bool OnMakeCurrent(gl::GLContext* context) override;
private:
~PassThroughImageTransportSurface() override;
« no previous file with comments | « gpu/ipc/service/image_transport_surface_win.cc ('k') | gpu/ipc/service/pass_through_image_transport_surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698