-
Notifications
You must be signed in to change notification settings - Fork 30k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: switch to upstream v8_inspector
This change picks up v8_inspector directly from the upstream chromium repository [1]; dropping the intermediate repository. The upstream code has been refactored substantially to make it easy to share code without adaptation with Node.js. The deps/v8_inspector directory is now simply a gathering of dependencies: * platform/v8_inspector: vendored from [2]. * platform/inspector_protocol: vendored from [3]. * deps/jinja2: vendored from [4]. * deps/markupsafe: vendored from [5]. [1]: https://chromium.googlesource.com/chromium/src/third_party/WebKit/Source/platform [2]: https://chromium.googlesource.com/chromium/src/third_party/WebKit/Source/platform/v8_inspector [3]: https://chromium.googlesource.com/chromium/src/third_party/WebKit/Source/platform/inspector_protocol [4]: https://github.com/mitsuhiko/jinja2 [5]: https://github.com/mitsuhiko/markupsafe PR-URL: #7302 Reviewed-By: indutny - Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
- Loading branch information
1 parent
fb39025
commit cbe5747
Showing
94 changed files
with
4,713 additions
and
11,267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
# v8_inspector | ||
# v8_inspector | ||
V8 Inspector support for Node.js | ||
================================ | ||
|
||
This directory is a gathering of dependencies for Node.js support for the | ||
[Chrome Debug Protocol][https://developer.chrome.com/devtools/docs/debugger-protocol]. | ||
|
||
* platform/v8_inspector: vendored from https://chromium.googlesource.com/chromium/src/third_party/WebKit/Source/platform/v8_inspector | ||
* platform/inspector_protocol: vendored from https://chromium.googlesource.com/chromium/src/third_party/WebKit/Source/platform/inspector_protocol | ||
* deps/jinja2: vendored from https://github.com/mitsuhiko/jinja2 | ||
* deps/markupsafe: vendored from https://github.com/mitsuhiko/markupsafe |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
deps/v8_inspector/platform/inspector_protocol/BackendCallback.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright (c) 2016 The Chromium Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
#ifndef BackendCallback_h | ||
#define BackendCallback_h | ||
|
||
#include "platform/inspector_protocol/ErrorSupport.h" | ||
#include "platform/inspector_protocol/Platform.h" | ||
|
||
namespace blink { | ||
namespace protocol { | ||
|
||
class PLATFORM_EXPORT BackendCallback { | ||
public: | ||
virtual ~BackendCallback() { } | ||
virtual void sendFailure(const ErrorString&) = 0; | ||
}; | ||
|
||
} // namespace platform | ||
} // namespace blink | ||
|
||
#endif // !defined(BackendCallback_h) |
Empty file.
78 changes: 0 additions & 78 deletions
78
deps/v8_inspector/platform/inspector_protocol/Backend_h.template
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.