Index: content/browser/compositor/reflector_texture.cc |
diff --git a/content/browser/compositor/reflector_texture.cc b/content/browser/compositor/reflector_texture.cc |
index 7db8c87cc8cacfc076fdd535c93333a8d252dbf8..f70c7b76b5b4dbeff6caa7933dc2d4e7c1ebb6b0 100644 |
--- a/content/browser/compositor/reflector_texture.cc |
+++ b/content/browser/compositor/reflector_texture.cc |
@@ -4,7 +4,7 @@ |
#include "content/browser/compositor/reflector_texture.h" |
-#include "components/display_compositor/gl_helper.h" |
+#include "components/viz/display_compositor/gl_helper.h" |
#include "content/browser/compositor/owned_mailbox.h" |
#include "gpu/command_buffer/client/context_support.h" |
#include "gpu/command_buffer/client/gles2_interface.h" |
@@ -14,13 +14,12 @@ namespace content { |
ReflectorTexture::ReflectorTexture(cc::ContextProvider* context_provider) |
: texture_id_(0) { |
- display_compositor::GLHelper* shared_helper = |
+ viz::GLHelper* shared_helper = |
ImageTransportFactory::GetInstance()->GetGLHelper(); |
mailbox_ = new OwnedMailbox(shared_helper); |
gpu::gles2::GLES2Interface* gl = context_provider->ContextGL(); |
- gl_helper_.reset( |
- new display_compositor::GLHelper(gl, context_provider->ContextSupport())); |
+ gl_helper_.reset(new viz::GLHelper(gl, context_provider->ContextSupport())); |
texture_id_ = gl_helper_->ConsumeMailboxToTexture(mailbox_->mailbox(), |
mailbox_->sync_token()); |