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

Unified Diff: Source/core/platform/graphics/chromium/DiscardablePixelRef.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/chromium/DiscardablePixelRef.cpp
diff --git a/Source/core/platform/graphics/chromium/DiscardablePixelRef.cpp b/Source/core/platform/graphics/chromium/DiscardablePixelRef.cpp
index eb1fd659631cb1900feb6ac143ae1c3c1a0c9e82..6950daffd83ddf2bd230de0f34a4b35f11e09ea9 100644
--- a/Source/core/platform/graphics/chromium/DiscardablePixelRef.cpp
+++ b/Source/core/platform/graphics/chromium/DiscardablePixelRef.cpp
@@ -77,7 +77,7 @@ DiscardablePixelRef::~DiscardablePixelRef()
bool DiscardablePixelRef::allocAndLockDiscardableMemory(size_t bytes)
{
- m_discardable = adoptPtr(WebKit::Platform::current()->allocateAndLockDiscardableMemory(bytes));
+ m_discardable = adoptPtr(blink::Platform::current()->allocateAndLockDiscardableMemory(bytes));
if (m_discardable) {
m_lockedMemory = m_discardable->data();
return true;

Powered by Google App Engine
This is Rietveld 408576698