| 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,
|
|
|