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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorPageAgent.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/core/inspector/InspectorPageAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
index 0bc574116719cc40c814ab71358984b193c47d02..5fd511ea88586187890a0c836d29ef0838f8b205 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp
@@ -556,7 +556,8 @@ void InspectorPageAgent::getResourceContent(
m_resourceContentLoaderClientId,
WTF::bind(
&InspectorPageAgent::getResourceContentAfterResourcesContentLoaded,
- wrapPersistent(this), frameId, url, passed(std::move(callback))));
+ wrapPersistent(this), frameId, url,
+ WTF::passed(std::move(callback))));
}
void InspectorPageAgent::searchContentAfterResourcesContentLoaded(
@@ -606,7 +607,8 @@ void InspectorPageAgent::searchInResource(
WTF::bind(&InspectorPageAgent::searchContentAfterResourcesContentLoaded,
wrapPersistent(this), frameId, url, query,
optionalCaseSensitive.fromMaybe(false),
- optionalIsRegex.fromMaybe(false), passed(std::move(callback))));
+ optionalIsRegex.fromMaybe(false),
+ WTF::passed(std::move(callback))));
}
Response InspectorPageAgent::setDocumentContent(const String& frameId,

Powered by Google App Engine
This is Rietveld 408576698