| Index: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| index 83213ec6c2d7dc43dedc87fbd830aad00ca8580f..555a6cbbf42ab69ec2f33c1d5b29f01227507c1a 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| @@ -83,10 +83,8 @@ public:
|
| void stepOutOfFunction();
|
| void clearStepping();
|
|
|
| - bool setScriptSource(const String16& sourceID, const String16& newContent, bool preview, ErrorString*, Maybe<protocol::Debugger::SetScriptSourceError>*, OwnPtr<JavaScriptCallFrame>* newCallFrames, Maybe<bool>* stackChanged);
|
| - PassOwnPtr<JavaScriptCallFrame> currentCallFrames();
|
| - PassOwnPtr<JavaScriptCallFrame> callFrame(int index);
|
| - int frameCount();
|
| + bool setScriptSource(const String16& sourceID, const String16& newContent, bool preview, ErrorString*, Maybe<protocol::Debugger::SetScriptSourceError>*, Vector<OwnPtr<JavaScriptCallFrame>>* newCallFrames, Maybe<bool>* stackChanged);
|
| + Vector<OwnPtr<JavaScriptCallFrame>> currentCallFrames(int limit = 0);
|
|
|
| bool isPaused();
|
| v8::Local<v8::Context> pausedContext() { return m_pausedContext; }
|
|
|