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

Unified Diff: Source/web/WebDevToolsAgentImpl.cpp

Issue 1001603002: Oilpan: fix build after r191713 (4c9f53fdbb). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: compile fix Created 5 years, 9 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
« no previous file with comments | « Source/bindings/core/v8/V8PerIsolateData.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDevToolsAgentImpl.cpp
diff --git a/Source/web/WebDevToolsAgentImpl.cpp b/Source/web/WebDevToolsAgentImpl.cpp
index 954e0e1ee31d9dee548da48fdf7f08ff78fcbf18..7ee0d7d73d2f3c33c1684cd06abf81e31dd51e96 100644
--- a/Source/web/WebDevToolsAgentImpl.cpp
+++ b/Source/web/WebDevToolsAgentImpl.cpp
@@ -121,7 +121,7 @@ public:
s_instance = instance.get();
v8::Isolate* isolate = V8PerIsolateData::mainThreadIsolate();
V8PerIsolateData* data = V8PerIsolateData::from(isolate);
- data->setScriptDebugServer(adoptPtr(new PageScriptDebugServer(instance.release(), isolate)));
+ data->setScriptDebugServer(adoptPtrWillBeNoop(new PageScriptDebugServer(instance.release(), isolate)));
}
static void inspectedViewClosed(WebViewImpl* view)
« no previous file with comments | « Source/bindings/core/v8/V8PerIsolateData.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698