Pacify the olde V8 compilers, which do not yet understand C++14,
when converting from std::unique_ptr<Foo> to std::unique_ptr<SuperFoo>.
Also remove an assert (we'd need to add the cassert include but
I don't want to).

Chromium Roll:
https://chromium-review.googlesource.com/c/chromium/src/+/1470721

V8 Roll:
https://chromium-review.googlesource.com/c/v8/v8/+/1470955

Change-Id: Iab7c2053d0e69470b72a3a9e11343413a4aab10f
1 file changed
tree: 3ffa7e1594ae3015b267b892f4659b44af4505c7
  1. base/
  2. encoding/
  3. lib/
  4. templates/
  5. testing/
  6. third_party/
  7. .clang-format
  8. .gitignore
  9. .gn
  10. BUILD.gn
  11. BUILDCONFIG.gn
  12. check_protocol_compatibility.py
  13. code_generator.py
  14. codereview.settings
  15. concatenate_protocols.py
  16. convert_protocol_to_json.py
  17. DEPS
  18. gen_cbor_templates.py
  19. inspector_protocol.gni
  20. inspector_protocol.gypi
  21. LICENSE
  22. OWNERS
  23. pdl.py
  24. README.md
  25. sample_config.json
  26. sample_expected_errors.json
  27. WATCHLISTS
README.md

Chromium inspector (devtools) protocol

This package contains code generators and templates for the Chromium inspector protocol.

The canonical location of this package is at https://chromium.googlesource.com/deps/inspector_protocol/

In the Chromium tree, it's rolled into https://cs.chromium.org/chromium/src/third_party/inspector_protocol/

In the V8 tree, it's rolled into https://cs.chromium.org/chromium/src/v8/third_party/inspector_protocol/

See also Contributing to Chrome Devtools Protocol.

We‘re working on enabling standalone builds for parts of this package for testing and development, please feel free to ignore this for now. But, if you’re familiar with Chromium's development process and have the depot_tools installed, you may use these commands to fetch the package (and dependencies) and build and run the tests:

fetch inspector_protocol
cd src
gn gen out/Release
ninja -C out/Release json_parser_test
out/Release/json_parser_test

You'll probably also need to install g++, since Clang uses this to find the standard C++ headers. E.g.,

sudo apt-get install g++-8