| Index: src/inspector/v8-debugger-script.h
|
| diff --git a/src/inspector/v8-debugger-script.h b/src/inspector/v8-debugger-script.h
|
| index 6113e792ad14396b42a71ac3462687c40a44fd40..97b5ba9e5100a58d8391406810d9e8e336cd4d19 100644
|
| --- a/src/inspector/v8-debugger-script.h
|
| +++ b/src/inspector/v8-debugger-script.h
|
| @@ -64,7 +64,12 @@ class V8DebuggerScript {
|
|
|
| void setSourceURL(const String16&);
|
| void setSourceMappingURL(const String16&);
|
| - void setSource(v8::Isolate*, v8::Local<v8::String>);
|
| + void setSource(v8::Local<v8::String>);
|
| +
|
| + bool getPossibleBreakpoints(
|
| + const v8::DebugInterface::Location& start,
|
| + const v8::DebugInterface::Location& end,
|
| + std::vector<v8::DebugInterface::Location>* locations);
|
|
|
| private:
|
| String16 m_id;
|
| @@ -81,6 +86,9 @@ class V8DebuggerScript {
|
| String16 m_executionContextAuxData;
|
| bool m_isLiveEdit;
|
|
|
| + v8::Isolate* m_isolate;
|
| + v8::Global<v8::DebugInterface::Script> m_script;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(V8DebuggerScript);
|
| };
|
|
|
|
|