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

Unified Diff: third_party/WebKit/Source/platform/PODArena.h

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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: third_party/WebKit/Source/platform/PODArena.h
diff --git a/third_party/WebKit/Source/platform/PODArena.h b/third_party/WebKit/Source/platform/PODArena.h
index 14f97e01a75c77032cb88607d5c67f479cc75b1d..5d590a7cc38153d7ec52282b94313eaa9d816174 100644
--- a/third_party/WebKit/Source/platform/PODArena.h
+++ b/third_party/WebKit/Source/platform/PODArena.h
@@ -130,7 +130,7 @@ class PODArena final : public RefCounted<PODArena> {
if (roundedSize > m_currentChunkSize)
m_currentChunkSize = roundedSize;
m_chunks.append(
- wrapUnique(new Chunk(m_allocator.get(), m_currentChunkSize)));
+ WTF::wrapUnique(new Chunk(m_allocator.get(), m_currentChunkSize)));
m_current = m_chunks.back().get();
ptr = m_current->allocate(roundedSize);
}
« no previous file with comments | « third_party/WebKit/Source/platform/DragImage.cpp ('k') | third_party/WebKit/Source/platform/WaitableEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698