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

Unified Diff: Source/core/dom/Node.cpp

Issue 325143002: Oilpan: Prepare moving inspector script related classes to oilpan. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed Created 6 years, 6 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/core/dom/ExecutionContextClient.h ('k') | Source/core/frame/Console.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Node.cpp
diff --git a/Source/core/dom/Node.cpp b/Source/core/dom/Node.cpp
index 78f6f9a17606e7349d17ec4de86a8455a8d48587..c03b957a102203c3006a3f42a9c6dc3e0b38d29f 100644
--- a/Source/core/dom/Node.cpp
+++ b/Source/core/dom/Node.cpp
@@ -701,7 +701,7 @@ namespace {
PassRefPtr<JSONArray> jsStackAsJSONArray()
{
RefPtr<JSONArray> jsonArray = JSONArray::create();
- RefPtr<ScriptCallStack> stack = createScriptCallStack(10);
+ RefPtrWillBeRawPtr<ScriptCallStack> stack = createScriptCallStack(10);
if (!stack)
return jsonArray.release();
for (size_t i = 0; i < stack->size(); i++)
« no previous file with comments | « Source/core/dom/ExecutionContextClient.h ('k') | Source/core/frame/Console.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698