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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.cpp

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/modules/serviceworkers/ServiceWorkerThread.cpp
diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.cpp b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.cpp
index 55f00c8dc9eaeb55a843c7a2011d552eb2b30dec..534afec1cd993ee749d3631645e47b73449467f3 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.cpp
+++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.cpp
@@ -41,8 +41,8 @@ namespace blink {
std::unique_ptr<ServiceWorkerThread> ServiceWorkerThread::create(
PassRefPtr<WorkerLoaderProxy> workerLoaderProxy,
WorkerReportingProxy& workerReportingProxy) {
- return wrapUnique(new ServiceWorkerThread(std::move(workerLoaderProxy),
- workerReportingProxy));
+ return WTF::wrapUnique(new ServiceWorkerThread(std::move(workerLoaderProxy),
+ workerReportingProxy));
}
ServiceWorkerThread::ServiceWorkerThread(

Powered by Google App Engine
This is Rietveld 408576698