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

Unified Diff: Source/core/platform/graphics/gpu/SharedGraphicsContext3D.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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: 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();

Powered by Google App Engine
This is Rietveld 408576698