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

Unified Diff: third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.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/web/ServiceWorkerGlobalScopeProxy.cpp
diff --git a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.cpp b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.cpp
index 156e5868f14d8a409f343bd17472c1044cacdfbe..bedc1c68049fcde2065e8f3ffb1c10fc92706834 100644
--- a/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.cpp
+++ b/third_party/WebKit/Source/web/ServiceWorkerGlobalScopeProxy.cpp
@@ -146,8 +146,9 @@ void ServiceWorkerGlobalScopeProxy::dispatchExtendableMessageEvent(
String origin;
if (!sourceOrigin.isUnique())
origin = sourceOrigin.toString();
- ServiceWorker* source = ServiceWorker::from(
- m_workerGlobalScope->getExecutionContext(), wrapUnique(handle.release()));
+ ServiceWorker* source =
+ ServiceWorker::from(m_workerGlobalScope->getExecutionContext(),
+ WTF::wrapUnique(handle.release()));
WaitUntilObserver* observer = WaitUntilObserver::create(
workerGlobalScope(), WaitUntilObserver::Message, eventID);

Powered by Google App Engine
This is Rietveld 408576698