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

Unified Diff: Source/platform/PurgeableBuffer.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
« no previous file with comments | « Source/platform/PurgeableBuffer.h ('k') | Source/platform/SSLKeyGenerator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/PurgeableBuffer.cpp
diff --git a/Source/platform/PurgeableBuffer.cpp b/Source/platform/PurgeableBuffer.cpp
index 2b7391288c5934ee5f15d600a668e8210c7d64be..f19f51a9aa2f4c1d7b61ab1598f378cb9e3085f4 100644
--- a/Source/platform/PurgeableBuffer.cpp
+++ b/Source/platform/PurgeableBuffer.cpp
@@ -43,7 +43,7 @@ PassOwnPtr<PurgeableBuffer> PurgeableBuffer::create(const char* data, size_t siz
if (size < minimumSize)
return nullptr;
- OwnPtr<WebKit::WebDiscardableMemory> memory = adoptPtr(WebKit::Platform::current()->allocateAndLockDiscardableMemory(size));
+ OwnPtr<blink::WebDiscardableMemory> memory = adoptPtr(blink::Platform::current()->allocateAndLockDiscardableMemory(size));
if (!memory)
return nullptr;
@@ -86,7 +86,7 @@ void PurgeableBuffer::unlock()
m_state = Unlocked;
}
-PurgeableBuffer::PurgeableBuffer(PassOwnPtr<WebKit::WebDiscardableMemory> memory, const char* data, size_t size)
+PurgeableBuffer::PurgeableBuffer(PassOwnPtr<blink::WebDiscardableMemory> memory, const char* data, size_t size)
: m_memory(memory)
, m_size(size)
, m_state(Locked)
« no previous file with comments | « Source/platform/PurgeableBuffer.h ('k') | Source/platform/SSLKeyGenerator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698