Index: content/common/gpu/client/context_provider_command_buffer.cc |
diff --git a/content/common/gpu/client/context_provider_command_buffer.cc b/content/common/gpu/client/context_provider_command_buffer.cc |
index 57e862a85f1678b262f83a51cc0096e3ad8bf630..c3ff9331621103fe098e0c28f1287b9219747c98 100644 |
--- a/content/common/gpu/client/context_provider_command_buffer.cc |
+++ b/content/common/gpu/client/context_provider_command_buffer.cc |
@@ -12,8 +12,8 @@ |
#include "base/callback_helpers.h" |
#include "base/strings/stringprintf.h" |
#include "cc/output/managed_memory_policy.h" |
-#include "content/common/gpu/client/grcontext_for_gles2_interface.h" |
#include "gpu/command_buffer/client/gles2_implementation.h" |
+#include "gpu/skia_bindings/grcontext_for_gles2_interface.h" |
#include "third_party/skia/include/gpu/GrContext.h" |
namespace content { |
@@ -126,8 +126,8 @@ class GrContext* ContextProviderCommandBuffer::GrContext() { |
if (gr_context_) |
return gr_context_->get(); |
- gr_context_.reset( |
- new GrContextForGLES2Interface(context3d_->GetGLInterface())); |
+ gr_context_.reset(new skia_bindings::GrContextForGLES2Interface( |
+ context3d_->GetGLInterface())); |
// If GlContext is already lost, also abandon the new GrContext. |
if (gr_context_->get() && |