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

Unified Diff: third_party/WebKit/Source/web/WebDevToolsAgentImpl.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/WebDevToolsAgentImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp
index f82d57de9f55f398f2855067a098955dd4b3af6e..7a4065c33032681f977d5fcc886de91ef3d095a8 100644
--- a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp
+++ b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp
@@ -111,8 +111,8 @@ class ClientMessageLoopAdapter : public MainThreadDebugger::ClientMessageLoop {
if (s_instance)
return;
std::unique_ptr<ClientMessageLoopAdapter> instance =
- wrapUnique(new ClientMessageLoopAdapter(
- wrapUnique(client->createClientMessageLoop())));
+ WTF::wrapUnique(new ClientMessageLoopAdapter(
+ WTF::wrapUnique(client->createClientMessageLoop())));
s_instance = instance.get();
MainThreadDebugger::instance()->setClientMessageLoop(std::move(instance));
}
@@ -695,7 +695,7 @@ void WebDevToolsAgent::interruptAndDispatch(int sessionId,
// WebKit API function.
MainThreadDebugger::interruptMainThreadAndRun(
crossThreadBind(WebDevToolsAgentImpl::runDebuggerTask, sessionId,
- passed(wrapUnique(rawDescriptor))));
+ WTF::passed(WTF::wrapUnique(rawDescriptor))));
}
bool WebDevToolsAgent::shouldInterruptForMethod(const WebString& method) {
« no previous file with comments | « third_party/WebKit/Source/web/WebDataSourceImpl.cpp ('k') | third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698