Commit 47d00edc authored by Andrey Kosyakov's avatar Andrey Kosyakov Committed by Commit Bot

Roll inspector_protocol to 351a2b717e7cd0e59c3d81505c1a803673667dac

This includes a fix for Array<Binary>
https://chromium-review.googlesource.com/c/deps/inspector_protocol/+/2309330

TBR: pfeldman@chromium.org
Change-Id: I42d4a7ff37933dc27e0f0e88b74de3a2c9e7f91d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2309429Reviewed-by: default avatarAndrey Kosyakov <caseq@chromium.org>
Commit-Queue: Andrey Kosyakov <caseq@chromium.org>
Cr-Commit-Position: refs/heads/master@{#790273}
parent 4d3f2694
...@@ -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: 4f2c08ac839d328fa591b9821a490eaa188b0bbe Revision: 351a2b717e7cd0e59c3d81505c1a803673667dac
License: BSD License: BSD
License File: LICENSE License File: LICENSE
Security Critical: yes Security Critical: yes
......
...@@ -64,6 +64,10 @@ struct ArrayTypedef<double> { typedef std::vector<double> type; }; ...@@ -64,6 +64,10 @@ struct ArrayTypedef<double> { typedef std::vector<double> type; };
template <> template <>
struct ArrayTypedef<bool> { typedef std::vector<bool> type; }; struct ArrayTypedef<bool> { typedef std::vector<bool> type; };
template <>
struct ArrayTypedef<Binary> { typedef std::vector<Binary> type; };
} // namespace detail } // namespace detail
template <typename T> template <typename T>
......
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