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 8bfdc09adda5cb4149fc68585047518d01165839..eb7096499b2d23d29552e8c61b652968f97e7267 100644 |
--- a/content/common/gpu/client/context_provider_command_buffer.cc |
+++ b/content/common/gpu/client/context_provider_command_buffer.cc |
@@ -10,9 +10,9 @@ |
#include "base/callback_helpers.h" |
#include "base/strings/stringprintf.h" |
#include "cc/output/managed_memory_policy.h" |
+#include "content/common/gpu/client/grcontext_for_webgraphicscontext3d.h" |
#include "gpu/command_buffer/client/gles2_implementation.h" |
#include "third_party/skia/include/gpu/GrContext.h" |
-#include "webkit/common/gpu/grcontext_for_webgraphicscontext3d.h" |
namespace content { |
@@ -134,8 +134,7 @@ class GrContext* ContextProviderCommandBuffer::GrContext() { |
if (gr_context_) |
return gr_context_->get(); |
- gr_context_.reset( |
- new webkit::gpu::GrContextForWebGraphicsContext3D(context3d_.get())); |
+ gr_context_.reset(new GrContextForWebGraphicsContext3D(context3d_.get())); |
// If GlContext is already lost, also abandon the new GrContext. |
if (IsContextLost()) |