| Index: Source/core/platform/graphics/gpu/SharedGraphicsContext3D.cpp
|
| diff --git a/Source/core/platform/graphics/gpu/SharedGraphicsContext3D.cpp b/Source/core/platform/graphics/gpu/SharedGraphicsContext3D.cpp
|
| index 11af84b34517139207d57e09e110ae0f9e515aa1..24a41ba8435469edad78616e4434c692136b2f63 100644
|
| --- a/Source/core/platform/graphics/gpu/SharedGraphicsContext3D.cpp
|
| +++ b/Source/core/platform/graphics/gpu/SharedGraphicsContext3D.cpp
|
| @@ -45,9 +45,9 @@ public:
|
| {
|
| bool wasCreated = false;
|
|
|
| - OwnPtr<WebKit::WebGraphicsContext3DProvider> provider = adoptPtr(WebKit::Platform::current()->createSharedOffscreenGraphicsContext3DProvider());
|
| + OwnPtr<blink::WebGraphicsContext3DProvider> provider = adoptPtr(blink::Platform::current()->createSharedOffscreenGraphicsContext3DProvider());
|
|
|
| - WebKit::WebGraphicsContext3D* webContext = 0;
|
| + blink::WebGraphicsContext3D* webContext = 0;
|
| GrContext* grContext = 0;
|
|
|
| if (provider) {
|
| @@ -56,7 +56,7 @@ public:
|
| }
|
|
|
| if (webContext && grContext) {
|
| - WebKit::WebGraphicsContext3D* oldWebContext = m_context ? m_context->webContext() : 0;
|
| + blink::WebGraphicsContext3D* oldWebContext = m_context ? m_context->webContext() : 0;
|
| GrContext* oldGrContext = m_context ? m_context->grContext() : 0;
|
| if (webContext != oldWebContext || grContext != oldGrContext)
|
| m_context.clear();
|
|
|