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

Unified Diff: third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.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/SharedWorkerRepositoryClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.cpp b/third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.cpp
index d25425496981b7c331b810b4cdcc003ced599ec6..13f4441309148e24802422d422b38e656d472616 100644
--- a/third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.cpp
+++ b/third_party/WebKit/Source/web/SharedWorkerRepositoryClientImpl.cpp
@@ -148,7 +148,7 @@ void SharedWorkerRepositoryClientImpl::connect(
bool isSecureContext =
worker->getExecutionContext()->isSecureContext(unusedSecureContextError);
std::unique_ptr<WebSharedWorkerConnector> webWorkerConnector =
- wrapUnique(m_client->createSharedWorkerConnector(
+ WTF::wrapUnique(m_client->createSharedWorkerConnector(
url, name, getId(document), header, headerType,
worker->getExecutionContext()->securityContext().addressSpace(),
isSecureContext ? WebSharedWorkerCreationContextTypeSecure

Powered by Google App Engine
This is Rietveld 408576698