| Index: third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| index 18164b7daf0215c1a6499c3b376fb2e971941835..118d5900281e9748ae1a44e48c1ac43867e2833e 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| @@ -31,7 +31,7 @@ namespace protocol = blink::protocol;
|
| class V8InspectorSessionImpl : public V8InspectorSession {
|
| PROTOCOL_DISALLOW_COPY(V8InspectorSessionImpl);
|
| public:
|
| - static std::unique_ptr<V8InspectorSessionImpl> create(V8InspectorImpl*, int contextGroupId, protocol::FrontendChannel*, const String16* state);
|
| + static std::unique_ptr<V8InspectorSessionImpl> create(V8InspectorImpl*, int contextGroupId, protocol::FrontendChannel*, const StringView& state);
|
| ~V8InspectorSessionImpl();
|
|
|
| V8InspectorImpl* inspector() const { return m_inspector; }
|
| @@ -51,28 +51,29 @@ public:
|
| std::unique_ptr<protocol::Runtime::RemoteObject> wrapObject(v8::Local<v8::Context>, v8::Local<v8::Value>, const String16& groupName, bool generatePreview);
|
| std::unique_ptr<protocol::Runtime::RemoteObject> wrapTable(v8::Local<v8::Context>, v8::Local<v8::Value> table, v8::Local<v8::Value> columns);
|
| std::vector<std::unique_ptr<protocol::Schema::Domain>> supportedDomainsImpl();
|
| + void releaseObjectGroup(const String16& objectGroup);
|
|
|
| // V8InspectorSession implementation.
|
| - void dispatchProtocolMessage(const String16& message) override;
|
| - String16 stateJSON() override;
|
| - std::unique_ptr<protocol::Array<protocol::Schema::API::Domain>> supportedDomains() override;
|
| + void dispatchProtocolMessage(const StringView& message) override;
|
| + std::unique_ptr<StringBuffer> stateJSON() override;
|
| + std::unique_ptr<blink::protocol::Array<blink::protocol::Schema::API::Domain>> supportedDomains() override;
|
| void addInspectedObject(std::unique_ptr<V8InspectorSession::Inspectable>) override;
|
| - void schedulePauseOnNextStatement(const String16& breakReason, const String16& breakDetails) override;
|
| + void schedulePauseOnNextStatement(const StringView& breakReason, const StringView& breakDetails) override;
|
| void cancelPauseOnNextStatement() override;
|
| - void breakProgram(const String16& breakReason, const String16& breakDetails) override;
|
| + void breakProgram(const StringView& breakReason, const StringView& breakDetails) override;
|
| void setSkipAllPauses(bool) override;
|
| void resume() override;
|
| void stepOver() override;
|
| - std::unique_ptr<protocol::Array<protocol::Debugger::API::SearchMatch>> searchInTextByLines(const String16& text, const String16& query, bool caseSensitive, bool isRegex) override;
|
| - void releaseObjectGroup(const String16& objectGroup) override;
|
| - bool unwrapObject(ErrorString*, const String16& objectId, v8::Local<v8::Value>*, v8::Local<v8::Context>*, String16* objectGroup) override;
|
| - std::unique_ptr<protocol::Runtime::API::RemoteObject> wrapObject(v8::Local<v8::Context>, v8::Local<v8::Value>, const String16& groupName) override;
|
| + std::unique_ptr<protocol::Array<protocol::Debugger::API::SearchMatch>> searchInTextByLines(const StringView& text, const StringView& query, bool caseSensitive, bool isRegex) override;
|
| + void releaseObjectGroup(const StringView& objectGroup) override;
|
| + bool unwrapObject(ErrorString*, const StringView& objectId, v8::Local<v8::Value>*, v8::Local<v8::Context>*, std::unique_ptr<StringBuffer>* objectGroup) override;
|
| + std::unique_ptr<protocol::Runtime::API::RemoteObject> wrapObject(v8::Local<v8::Context>, v8::Local<v8::Value>, const StringView& groupName) override;
|
|
|
| V8InspectorSession::Inspectable* inspectedObject(unsigned num);
|
| static const unsigned kInspectedObjectBufferSize = 5;
|
|
|
| private:
|
| - V8InspectorSessionImpl(V8InspectorImpl*, int contextGroupId, protocol::FrontendChannel*, const String16* state);
|
| + V8InspectorSessionImpl(V8InspectorImpl*, int contextGroupId, protocol::FrontendChannel*, const StringView& state);
|
| protocol::DictionaryValue* agentState(const String16& name);
|
|
|
| int m_contextGroupId;
|
|
|