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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerBackingThread.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/core/workers/WorkerBackingThread.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerBackingThread.h b/third_party/WebKit/Source/core/workers/WorkerBackingThread.h
index f2cb1d8449a7d697c1a5e50da7da59169a3dc86f..ee1d4795342052b60260902313046bbd625357e0 100644
--- a/third_party/WebKit/Source/core/workers/WorkerBackingThread.h
+++ b/third_party/WebKit/Source/core/workers/WorkerBackingThread.h
@@ -31,10 +31,11 @@ class CORE_EXPORT WorkerBackingThread final {
static std::unique_ptr<WorkerBackingThread> create(
const char* name,
BlinkGC::ThreadHeapMode threadHeapMode) {
- return wrapUnique(new WorkerBackingThread(name, false, threadHeapMode));
+ return WTF::wrapUnique(
+ new WorkerBackingThread(name, false, threadHeapMode));
}
static std::unique_ptr<WorkerBackingThread> create(WebThread* thread) {
- return wrapUnique(new WorkerBackingThread(thread, false));
+ return WTF::wrapUnique(new WorkerBackingThread(thread, false));
}
// These are needed to suppress leak reports. See
@@ -42,10 +43,10 @@ class CORE_EXPORT WorkerBackingThread final {
static std::unique_ptr<WorkerBackingThread> createForTest(
const char* name,
BlinkGC::ThreadHeapMode threadHeapMode) {
- return wrapUnique(new WorkerBackingThread(name, true, threadHeapMode));
+ return WTF::wrapUnique(new WorkerBackingThread(name, true, threadHeapMode));
}
static std::unique_ptr<WorkerBackingThread> createForTest(WebThread* thread) {
- return wrapUnique(new WorkerBackingThread(thread, true));
+ return WTF::wrapUnique(new WorkerBackingThread(thread, true));
}
~WorkerBackingThread();

Powered by Google App Engine
This is Rietveld 408576698