Index: Source/core/inspector/InspectorDebuggerAgent.cpp |
diff --git a/Source/core/inspector/InspectorDebuggerAgent.cpp b/Source/core/inspector/InspectorDebuggerAgent.cpp |
index bec67a55aaf5169e35ce4a683fed9150dd4fec60..28d83bcf21021f3eca55927124f9ff51a3395d6c 100644 |
--- a/Source/core/inspector/InspectorDebuggerAgent.cpp |
+++ b/Source/core/inspector/InspectorDebuggerAgent.cpp |
@@ -476,7 +476,7 @@ ScriptDebugListener::SkipPauseRequest InspectorDebuggerAgent::shouldSkipExceptio |
{ |
// FIXME: Fast return: if (!m_cachedSkipStackRegExp && !has_any_anti_breakpoint) return ScriptDebugListener::NoSkip; |
- RefPtr<JavaScriptCallFrame> topFrame = scriptDebugServer().topCallFrameNoScopes(); |
+ RefPtrWillBeRawPtr<JavaScriptCallFrame> topFrame = scriptDebugServer().topCallFrameNoScopes(); |
if (!topFrame) |
return ScriptDebugListener::NoSkip; |
@@ -529,7 +529,7 @@ ScriptDebugListener::SkipPauseRequest InspectorDebuggerAgent::shouldSkipStepPaus |
if (!m_cachedSkipStackRegExp) |
return ScriptDebugListener::NoSkip; |
- RefPtr<JavaScriptCallFrame> topFrame = scriptDebugServer().topCallFrameNoScopes(); |
+ RefPtrWillBeRawPtr<JavaScriptCallFrame> topFrame = scriptDebugServer().topCallFrameNoScopes(); |
String scriptUrl = scriptURL(topFrame.get()); |
if (scriptUrl.isEmpty() || m_cachedSkipStackRegExp->match(scriptUrl) == -1) |
return ScriptDebugListener::NoSkip; |
@@ -901,7 +901,7 @@ void InspectorDebuggerAgent::compileScript(ErrorString* errorString, const Strin |
String exceptionDetailsText; |
int lineNumberValue = 0; |
int columnNumberValue = 0; |
- RefPtr<ScriptCallStack> stackTraceValue; |
+ RefPtrWillBeRawPtr<ScriptCallStack> stackTraceValue; |
scriptDebugServer().compileScript(injectedScript.scriptState(), expression, sourceURL, &scriptIdValue, &exceptionDetailsText, &lineNumberValue, &columnNumberValue, &stackTraceValue); |
if (!scriptIdValue && !exceptionDetailsText) { |
*errorString = "Script compilation failed"; |
@@ -938,7 +938,7 @@ void InspectorDebuggerAgent::runScript(ErrorString* errorString, const ScriptId& |
String exceptionDetailsText; |
int lineNumberValue = 0; |
int columnNumberValue = 0; |
- RefPtr<ScriptCallStack> stackTraceValue; |
+ RefPtrWillBeRawPtr<ScriptCallStack> stackTraceValue; |
scriptDebugServer().runScript(injectedScript.scriptState(), scriptId, &value, &wasThrownValue, &exceptionDetailsText, &lineNumberValue, &columnNumberValue, &stackTraceValue); |
if (value.isEmpty()) { |
*errorString = "Script execution failed"; |