summaryrefslogtreecommitdiff
path: root/chromium/v8/include
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/include')
-rw-r--r--chromium/v8/include/v8-inspector.h2
-rw-r--r--chromium/v8/include/v8-version.h2
-rw-r--r--chromium/v8/include/v8.h23
3 files changed, 7 insertions, 20 deletions
diff --git a/chromium/v8/include/v8-inspector.h b/chromium/v8/include/v8-inspector.h
index 43bf3b4f60b..d0bb9b47fe4 100644
--- a/chromium/v8/include/v8-inspector.h
+++ b/chromium/v8/include/v8-inspector.h
@@ -211,6 +211,8 @@ class V8_EXPORT V8InspectorClient {
// TODO(dgozman): this was added to support service worker shadow page. We
// should not connect at all.
virtual bool canExecuteScripts(int contextGroupId) { return true; }
+
+ virtual void maxAsyncCallStackDepthChanged(int depth) {}
};
class V8_EXPORT V8Inspector {
diff --git a/chromium/v8/include/v8-version.h b/chromium/v8/include/v8-version.h
index 4a42e6b48d7..46bb92f6506 100644
--- a/chromium/v8/include/v8-version.h
+++ b/chromium/v8/include/v8-version.h
@@ -11,7 +11,7 @@
#define V8_MAJOR_VERSION 6
#define V8_MINOR_VERSION 3
#define V8_BUILD_NUMBER 292
-#define V8_PATCH_LEVEL 0
+#define V8_PATCH_LEVEL 46
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
diff --git a/chromium/v8/include/v8.h b/chromium/v8/include/v8.h
index 5d6b04ad1a4..f1001533649 100644
--- a/chromium/v8/include/v8.h
+++ b/chromium/v8/include/v8.h
@@ -7976,9 +7976,8 @@ class V8_EXPORT V8 {
* This function removes callback which was installed by
* AddGCPrologueCallback function.
*/
- V8_INLINE static V8_DEPRECATED(
- "Use isolate version",
- void RemoveGCPrologueCallback(GCCallback callback));
+ static V8_DEPRECATED("Use isolate version",
+ void RemoveGCPrologueCallback(GCCallback callback));
/**
* Enables the host application to receive a notification after a
@@ -7999,9 +7998,8 @@ class V8_EXPORT V8 {
* This function removes callback which was installed by
* AddGCEpilogueCallback function.
*/
- V8_INLINE static V8_DEPRECATED(
- "Use isolate version",
- void RemoveGCEpilogueCallback(GCCallback callback));
+ static V8_DEPRECATED("Use isolate version",
+ void RemoveGCEpilogueCallback(GCCallback callback));
/**
* Initializes V8. This function needs to be called before the first Isolate
@@ -10385,19 +10383,6 @@ void V8::SetFatalErrorHandler(FatalErrorCallback callback) {
isolate->SetFatalErrorHandler(callback);
}
-void V8::RemoveGCPrologueCallback(GCCallback callback) {
- Isolate* isolate = Isolate::GetCurrent();
- isolate->RemoveGCPrologueCallback(
- reinterpret_cast<Isolate::GCCallback>(callback));
-}
-
-
-void V8::RemoveGCEpilogueCallback(GCCallback callback) {
- Isolate* isolate = Isolate::GetCurrent();
- isolate->RemoveGCEpilogueCallback(
- reinterpret_cast<Isolate::GCCallback>(callback));
-}
-
void V8::TerminateExecution(Isolate* isolate) { isolate->TerminateExecution(); }