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

Unified Diff: Source/bindings/core/v8/V8PerIsolateData.h

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 | « no previous file | Source/bindings/core/v8/V8PerIsolateData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8PerIsolateData.h
diff --git a/Source/bindings/core/v8/V8PerIsolateData.h b/Source/bindings/core/v8/V8PerIsolateData.h
index 6ce92ae94699b01f3b54c777a97c4382ad08d6d1..bcb28b71ef4c55d37fa8d0a81011ab49e3e91fb1 100644
--- a/Source/bindings/core/v8/V8PerIsolateData.h
+++ b/Source/bindings/core/v8/V8PerIsolateData.h
@@ -114,7 +114,7 @@ public:
void runEndOfScopeTasks();
void clearEndOfScopeTasks();
- void setScriptDebugServer(PassOwnPtr<ScriptDebugServer>);
+ void setScriptDebugServer(PassOwnPtrWillBeRawPtr<ScriptDebugServer>);
private:
V8PerIsolateData();
@@ -150,7 +150,7 @@ private:
bool m_performingMicrotaskCheckpoint;
Vector<OwnPtr<EndOfScopeTask>> m_endOfScopeTasks;
- OwnPtr<ScriptDebugServer> m_debugServer;
+ OwnPtrWillBePersistent<ScriptDebugServer> m_debugServer;
};
} // namespace blink
« no previous file with comments | « no previous file | Source/bindings/core/v8/V8PerIsolateData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698