Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8ThrowException.h

Issue 1952893003: Implement custom element construction and some 'define' checks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use DCHECK, revert RuntimeEnabledFeatures.in. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/bindings/core/v8/V8ThrowException.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8ThrowException.h b/third_party/WebKit/Source/bindings/core/v8/V8ThrowException.h
index 2eaaa25d3cac5c81acee15188612f80af3a10f7b..adf91fbbeb2e7f34d9186178391aa317dab20415 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8ThrowException.h
+++ b/third_party/WebKit/Source/bindings/core/v8/V8ThrowException.h
@@ -54,6 +54,7 @@ public:
static v8::Local<v8::Value> throwSyntaxError(v8::Isolate*, const String&);
static v8::Local<v8::Value> createReferenceError(v8::Isolate*, const String&);
static v8::Local<v8::Value> throwReferenceError(v8::Isolate*, const String&);
+ static v8::Local<v8::Value> throwIllegalConstructorTypeError(v8::Isolate*);
haraken 2016/05/10 09:04:21 I'd prefer not adding this helper method since "Il
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698