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

Unified Diff: Source/web/WebDevToolsAgentImpl.cpp

Issue 1131263009: Oilpan: fix build after r195134. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: disable trace() impl, non-Oilpan Created 5 years, 7 months 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: Source/web/WebDevToolsAgentImpl.cpp
diff --git a/Source/web/WebDevToolsAgentImpl.cpp b/Source/web/WebDevToolsAgentImpl.cpp
index 655817ba2f6154904b77a01ad8e56d7cbba08f29..5fbc213d4a63ae2e7540a5bcd588d955aa080974 100644
--- a/Source/web/WebDevToolsAgentImpl.cpp
+++ b/Source/web/WebDevToolsAgentImpl.cpp
@@ -118,7 +118,7 @@ public:
s_instance = instance.get();
v8::Isolate* isolate = V8PerIsolateData::mainThreadIsolate();
V8PerIsolateData* data = V8PerIsolateData::from(isolate);
- data->setScriptDebugServer(adoptPtrWillBeNoop(new PageScriptDebugServer(instance.release(), isolate)));
+ data->setScriptDebugServer(PageScriptDebugServer::create(instance.release(), isolate));
}
static void webViewImplClosed(WebViewImpl* view)

Powered by Google App Engine
This is Rietveld 408576698