Chromium Code Reviews| Index: Source/core/inspector/PerIsolateDebuggerClient.h |
| diff --git a/Source/core/inspector/PerIsolateDebuggerClient.h b/Source/core/inspector/PerIsolateDebuggerClient.h |
| index 10f6d5e2f958edd9678bfdb768338ad2d1944c58..c187862415c23cc68b1863097e05f65c8f951dc3 100644 |
| --- a/Source/core/inspector/PerIsolateDebuggerClient.h |
| +++ b/Source/core/inspector/PerIsolateDebuggerClient.h |
| @@ -9,14 +9,16 @@ |
| namespace blink { |
| -class PerIsolateDebuggerClient final : public ScriptDebugServer::Client { |
| +class PerIsolateDebuggerClient : public ScriptDebugServer::Client { |
| WTF_MAKE_NONCOPYABLE(PerIsolateDebuggerClient); |
| public: |
| - explicit PerIsolateDebuggerClient(v8::Isolate*); |
| + explicit PerIsolateDebuggerClient(v8::Isolate*, PassOwnPtr<ScriptDebugServer>); |
|
yurys
2015/05/08 10:59:15
drop explicit
sergeyv
2015/05/08 13:59:15
Done.
|
| ~PerIsolateDebuggerClient() override; |
| v8::Local<v8::Object> compileDebuggerScript() override; |
| + ScriptDebugServer* scriptDebugServer() const { return m_scriptDebugServer.get(); } |
| private: |
| v8::Isolate* m_isolate; |
| + OwnPtr<ScriptDebugServer> m_scriptDebugServer; |
| }; |
| } // namespace blink |