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

Unified Diff: third_party/WebKit/Source/platform/heap/GCTaskRunner.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/heap/GCTaskRunner.h
diff --git a/third_party/WebKit/Source/platform/heap/GCTaskRunner.h b/third_party/WebKit/Source/platform/heap/GCTaskRunner.h
index a1db9d8bd9b3c374c5939b597d4b22999f690972..211ff27faeb0992d5bc1ab70fd495552eaf1adbf 100644
--- a/third_party/WebKit/Source/platform/heap/GCTaskRunner.h
+++ b/third_party/WebKit/Source/platform/heap/GCTaskRunner.h
@@ -100,10 +100,11 @@ class GCTaskRunner final {
public:
explicit GCTaskRunner(WebThread* thread)
- : m_gcTaskObserver(wrapUnique(new GCTaskObserver)), m_thread(thread) {
+ : m_gcTaskObserver(WTF::wrapUnique(new GCTaskObserver)),
+ m_thread(thread) {
m_thread->addTaskObserver(m_gcTaskObserver.get());
- ThreadState::current()->addInterruptor(
- wrapUnique(new MessageLoopInterruptor(thread->getWebTaskRunner())));
+ ThreadState::current()->addInterruptor(WTF::wrapUnique(
+ new MessageLoopInterruptor(thread->getWebTaskRunner())));
}
~GCTaskRunner() { m_thread->removeTaskObserver(m_gcTaskObserver.get()); }
« no previous file with comments | « third_party/WebKit/Source/platform/heap/CallbackStack.cpp ('k') | third_party/WebKit/Source/platform/heap/Heap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698