| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8InspectorSessionImpl_h | 5 #ifndef V8InspectorSessionImpl_h |
| 6 #define V8InspectorSessionImpl_h | 6 #define V8InspectorSessionImpl_h |
| 7 | 7 |
| 8 #include "platform/inspector_protocol/Allocator.h" | 8 #include "platform/inspector_protocol/Allocator.h" |
| 9 #include "platform/inspector_protocol/DispatcherBase.h" | 9 #include "platform/inspector_protocol/DispatcherBase.h" |
| 10 #include "platform/inspector_protocol/Platform.h" | 10 #include "platform/inspector_protocol/Platform.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 void discardInjectedScripts(); | 48 void discardInjectedScripts(); |
| 49 void reportAllContexts(V8RuntimeAgentImpl*); | 49 void reportAllContexts(V8RuntimeAgentImpl*); |
| 50 void setCustomObjectFormatterEnabled(bool); | 50 void setCustomObjectFormatterEnabled(bool); |
| 51 std::unique_ptr<protocol::Runtime::RemoteObject> wrapObject(v8::Local<v8::Co
ntext>, v8::Local<v8::Value>, const String16& groupName, bool generatePreview); | 51 std::unique_ptr<protocol::Runtime::RemoteObject> wrapObject(v8::Local<v8::Co
ntext>, v8::Local<v8::Value>, const String16& groupName, bool generatePreview); |
| 52 std::unique_ptr<protocol::Runtime::RemoteObject> wrapTable(v8::Local<v8::Con
text>, v8::Local<v8::Value> table, v8::Local<v8::Value> columns); | 52 std::unique_ptr<protocol::Runtime::RemoteObject> wrapTable(v8::Local<v8::Con
text>, v8::Local<v8::Value> table, v8::Local<v8::Value> columns); |
| 53 | 53 |
| 54 // V8InspectorSession implementation. | 54 // V8InspectorSession implementation. |
| 55 void dispatchProtocolMessage(const String16& message) override; | 55 void dispatchProtocolMessage(const String16& message) override; |
| 56 String16 stateJSON() override; | 56 String16 stateJSON() override; |
| 57 void addInspectedObject(std::unique_ptr<V8InspectorSession::Inspectable>) ov
erride; | 57 void addInspectedObject(std::unique_ptr<V8InspectorSession::Inspectable>) ov
erride; |
| 58 void schedulePauseOnNextStatement(const String16& breakReason, std::unique_p
tr<protocol::DictionaryValue> data) override; | 58 void schedulePauseOnNextStatement(const String16& breakReason, const String1
6& breakDetails) override; |
| 59 void cancelPauseOnNextStatement() override; | 59 void cancelPauseOnNextStatement() override; |
| 60 void breakProgram(const String16& breakReason, std::unique_ptr<protocol::Dic
tionaryValue> data) override; | 60 void breakProgram(const String16& breakReason, const String16& breakDetails)
override; |
| 61 void setSkipAllPauses(bool) override; | 61 void setSkipAllPauses(bool) override; |
| 62 void resume() override; | 62 void resume() override; |
| 63 void stepOver() override; | 63 void stepOver() override; |
| 64 void releaseObjectGroup(const String16& objectGroup) override; | 64 void releaseObjectGroup(const String16& objectGroup) override; |
| 65 v8::Local<v8::Value> findObject(ErrorString*, const String16& objectId, v8::
Local<v8::Context>* = nullptr, String16* groupName = nullptr) override; | 65 v8::Local<v8::Value> findObject(ErrorString*, const String16& objectId, v8::
Local<v8::Context>* = nullptr, String16* groupName = nullptr) override; |
| 66 std::unique_ptr<protocol::Runtime::API::RemoteObject> wrapObject(v8::Local<v
8::Context>, v8::Local<v8::Value>, const String16& groupName) override; | 66 std::unique_ptr<protocol::Runtime::API::RemoteObject> wrapObject(v8::Local<v
8::Context>, v8::Local<v8::Value>, const String16& groupName) override; |
| 67 | 67 |
| 68 V8InspectorSession::Inspectable* inspectedObject(unsigned num); | 68 V8InspectorSession::Inspectable* inspectedObject(unsigned num); |
| 69 static const unsigned kInspectedObjectBufferSize = 5; | 69 static const unsigned kInspectedObjectBufferSize = 5; |
| 70 | 70 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 84 std::unique_ptr<V8DebuggerAgentImpl> m_debuggerAgent; | 84 std::unique_ptr<V8DebuggerAgentImpl> m_debuggerAgent; |
| 85 std::unique_ptr<V8HeapProfilerAgentImpl> m_heapProfilerAgent; | 85 std::unique_ptr<V8HeapProfilerAgentImpl> m_heapProfilerAgent; |
| 86 std::unique_ptr<V8ProfilerAgentImpl> m_profilerAgent; | 86 std::unique_ptr<V8ProfilerAgentImpl> m_profilerAgent; |
| 87 std::unique_ptr<V8ConsoleAgentImpl> m_consoleAgent; | 87 std::unique_ptr<V8ConsoleAgentImpl> m_consoleAgent; |
| 88 std::vector<std::unique_ptr<V8InspectorSession::Inspectable>> m_inspectedObj
ects; | 88 std::vector<std::unique_ptr<V8InspectorSession::Inspectable>> m_inspectedObj
ects; |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 } // namespace blink | 91 } // namespace blink |
| 92 | 92 |
| 93 #endif | 93 #endif |
| OLD | NEW |