Index: Source/bindings/v8/ScriptDebugServer.h |
diff --git a/Source/bindings/v8/ScriptDebugServer.h b/Source/bindings/v8/ScriptDebugServer.h |
index 79af5925466b11754f6d180eedd74e01918f934a..446e4932a7a271f0fb41189c8a8d4f8159f960c7 100644 |
--- a/Source/bindings/v8/ScriptDebugServer.h |
+++ b/Source/bindings/v8/ScriptDebugServer.h |
@@ -81,7 +81,7 @@ public: |
bool setScriptSource(const String& sourceID, const String& newContent, bool preview, String* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, ScriptValue* newCallFrames, RefPtr<JSONObject>* result); |
ScriptValue currentCallFrames(); |
ScriptValue currentCallFramesForAsyncStack(); |
- PassRefPtr<JavaScriptCallFrame> topCallFrameNoScopes(); |
+ PassRefPtrWillBeRawPtr<JavaScriptCallFrame> topCallFrameNoScopes(); |
int frameCount(); |
class Task { |
@@ -100,9 +100,9 @@ public: |
v8::Handle<v8::Value> setFunctionVariableValue(v8::Handle<v8::Value> functionValue, int scopeNumber, const String& variableName, v8::Handle<v8::Value> newValue); |
v8::Local<v8::Value> callDebuggerMethod(const char* functionName, int argc, v8::Handle<v8::Value> argv[]); |
- virtual void compileScript(ScriptState*, const String& expression, const String& sourceURL, String* scriptId, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtr<ScriptCallStack>* stackTrace); |
+ virtual void compileScript(ScriptState*, const String& expression, const String& sourceURL, String* scriptId, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace); |
virtual void clearCompiledScripts(); |
- virtual void runScript(ScriptState*, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtr<ScriptCallStack>* stackTrace); |
+ virtual void runScript(ScriptState*, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtrWillBeRawPtr<ScriptCallStack>* stackTrace); |
virtual void setPreprocessorSource(const String&) { } |
virtual void preprocessBeforeCompile(const v8::Debug::EventDetails&) { } |
virtual PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode&); |
@@ -148,7 +148,7 @@ private: |
ScriptValue currentCallFramesInner(ScopeInfoDetails); |
void stepCommandWithFrame(const char* functionName, const ScriptValue& frame); |
- PassRefPtr<JavaScriptCallFrame> wrapCallFrames(int maximumLimit, ScopeInfoDetails); |
+ PassRefPtrWillBeRawPtr<JavaScriptCallFrame> wrapCallFrames(int maximumLimit, ScopeInfoDetails); |
bool m_runningNestedMessageLoop; |
}; |