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

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

Issue 1156463003: Oilpan: fix build after r196422. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: InspectorDebuggerAgent fixes Created 5 years, 7 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/V8Debugger.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/V8Debugger.h
diff --git a/Source/bindings/core/v8/V8Debugger.h b/Source/bindings/core/v8/V8Debugger.h
index 5ff01782d2adb68bc87feb028383c4613bf8fe10..2872ae63e9dc7bbb4fff24fa1505db6469e6db67 100644
--- a/Source/bindings/core/v8/V8Debugger.h
+++ b/Source/bindings/core/v8/V8Debugger.h
@@ -105,10 +105,10 @@ 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();
- PassRefPtrWillBeRawPtr<JavaScriptCallFrame> callFrameNoScopes(int index);
+ PassRefPtr<JavaScriptCallFrame> callFrameNoScopes(int index);
int frameCount();
- static PassRefPtrWillBeRawPtr<JavaScriptCallFrame> toJavaScriptCallFrameUnsafe(const ScriptValue&);
+ static PassRefPtr<JavaScriptCallFrame> toJavaScriptCallFrameUnsafe(const ScriptValue&);
bool isPaused();
@@ -144,7 +144,7 @@ private:
NoScopes // Should be the last option.
};
ScriptValue currentCallFramesInner(ScopeInfoDetails);
- PassRefPtrWillBeRawPtr<JavaScriptCallFrame> wrapCallFrames(int maximumLimit, ScopeInfoDetails);
+ PassRefPtr<JavaScriptCallFrame> wrapCallFrames(int maximumLimit, ScopeInfoDetails);
void handleV8AsyncTaskEvent(ScriptDebugListener*, ScriptState* pausedScriptState, v8::Local<v8::Object> executionState, v8::Local<v8::Object> eventData);
void handleV8PromiseEvent(ScriptDebugListener*, ScriptState* pausedScriptState, v8::Local<v8::Object> executionState, v8::Local<v8::Object> eventData);
« no previous file with comments | « no previous file | Source/bindings/core/v8/V8Debugger.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698