Commit b97ee43b authored by Andrey Kosyakov's avatar Andrey Kosyakov Committed by Commit Bot

Roll third_party/inspector_protocol to 7c91103242e0bc0bbf4120e459506b5f0736cd26

TBR=dgozman

Change-Id: Ie3e8cb8937806d8924699922b026df897401bbf4
Reviewed-on: https://chromium-review.googlesource.com/c/1297569Reviewed-by: default avatarAndrey Kosyakov <caseq@chromium.org>
Commit-Queue: Andrey Kosyakov <caseq@chromium.org>
Cr-Commit-Position: refs/heads/master@{#602173}
parent e217c52f
...@@ -2,7 +2,7 @@ Name: inspector protocol ...@@ -2,7 +2,7 @@ Name: inspector protocol
Short Name: inspector_protocol Short Name: inspector_protocol
URL: https://chromium.googlesource.com/deps/inspector_protocol/ URL: https://chromium.googlesource.com/deps/inspector_protocol/
Version: 0 Version: 0
Revision: 1c471db574e6252b65df9b7b42e726185a9d8fa6 Revision: 7c91103242e0bc0bbf4120e459506b5f0736cd26
License: BSD License: BSD
License File: LICENSE License File: LICENSE
Security Critical: no Security Critical: no
......
...@@ -16,12 +16,12 @@ namespace {{namespace}} { ...@@ -16,12 +16,12 @@ namespace {{namespace}} {
class {{config.lib.export_macro}} Object { class {{config.lib.export_macro}} Object {
public: public:
static std::unique_ptr<Object> fromValue(protocol::Value*, ErrorSupport*); static std::unique_ptr<Object> fromValue(protocol::Value*, ErrorSupport*);
explicit Object(std::unique_ptr<protocol::DictionaryValue>);
~Object(); ~Object();
std::unique_ptr<protocol::DictionaryValue> toValue() const; std::unique_ptr<protocol::DictionaryValue> toValue() const;
std::unique_ptr<Object> clone() const; std::unique_ptr<Object> clone() const;
private: private:
explicit Object(std::unique_ptr<protocol::DictionaryValue>);
std::unique_ptr<protocol::DictionaryValue> m_object; std::unique_ptr<protocol::DictionaryValue> m_object;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment