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

Side by Side 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 static v8::Local<v8::Value> createGeneralError(v8::Isolate*, const String&); 47 static v8::Local<v8::Value> createGeneralError(v8::Isolate*, const String&);
48 static v8::Local<v8::Value> throwGeneralError(v8::Isolate*, const String&); 48 static v8::Local<v8::Value> throwGeneralError(v8::Isolate*, const String&);
49 static v8::Local<v8::Value> createTypeError(v8::Isolate*, const String&); 49 static v8::Local<v8::Value> createTypeError(v8::Isolate*, const String&);
50 static v8::Local<v8::Value> throwTypeError(v8::Isolate*, const String&); 50 static v8::Local<v8::Value> throwTypeError(v8::Isolate*, const String&);
51 static v8::Local<v8::Value> createRangeError(v8::Isolate*, const String&); 51 static v8::Local<v8::Value> createRangeError(v8::Isolate*, const String&);
52 static v8::Local<v8::Value> throwRangeError(v8::Isolate*, const String&); 52 static v8::Local<v8::Value> throwRangeError(v8::Isolate*, const String&);
53 static v8::Local<v8::Value> createSyntaxError(v8::Isolate*, const String&); 53 static v8::Local<v8::Value> createSyntaxError(v8::Isolate*, const String&);
54 static v8::Local<v8::Value> throwSyntaxError(v8::Isolate*, const String&); 54 static v8::Local<v8::Value> throwSyntaxError(v8::Isolate*, const String&);
55 static v8::Local<v8::Value> createReferenceError(v8::Isolate*, const String& ); 55 static v8::Local<v8::Value> createReferenceError(v8::Isolate*, const String& );
56 static v8::Local<v8::Value> throwReferenceError(v8::Isolate*, const String&) ; 56 static v8::Local<v8::Value> throwReferenceError(v8::Isolate*, const String&) ;
57 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
57 }; 58 };
58 59
59 } // namespace blink 60 } // namespace blink
60 61
61 #endif // V8ThrowException_h 62 #endif // V8ThrowException_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698