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

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

Issue 2209203002: binding: Always throws an exception in the current realm. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed review comments. Created 4 years, 4 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
11 * documentation and/or other materials provided with the distribution. 11 * documentation and/or other materials provided with the distribution.
12 * 12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN Y 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN Y
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN Y 16 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN Y
17 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 17 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 18 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O N 19 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O N
20 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 20 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */ 23 */
24 24
25 #ifndef V8ThrowException_h 25 #ifndef V8ThrowException_h
26 #define V8ThrowException_h 26 #define V8ThrowException_h
27 27
28 #include "core/CoreExport.h" 28 #include "core/CoreExport.h"
29 #include "core/dom/ExceptionCode.h"
29 #include "wtf/Allocator.h" 30 #include "wtf/Allocator.h"
30 #include "wtf/text/WTFString.h" 31 #include "wtf/text/WTFString.h"
31 #include <v8.h> 32 #include <v8.h>
32 33
33 namespace blink { 34 namespace blink {
34 35
36 // Provides utility functions to create and/or throw a V8 exception.
37 // Mostly a set of wrapper functions for v8::Exception class.
35 class CORE_EXPORT V8ThrowException { 38 class CORE_EXPORT V8ThrowException {
36 STATIC_ONLY(V8ThrowException); 39 STATIC_ONLY(V8ThrowException);
37 public: 40 public:
41 // Creates and returns an exception object, or returns an empty handle if
42 // failed. |unsanitizedMessage| should not be specified unless it's
43 // SecurityError.
44 static v8::Local<v8::Value> createDOMException(v8::Isolate*, ExceptionCode, const String& sanitizedMessage, const String& unsanitizedMessage = String());
38 45
39 static v8::Local<v8::Value> createDOMException(v8::Isolate* isolate, int ec, const String& message, const v8::Local<v8::Object>& creationContext) 46 static void throwException(v8::Isolate* isolate, v8::Local<v8::Value> except ion)
40 { 47 {
41 return createDOMException(isolate, ec, message, String(), creationContex t); 48 if (!isolate->IsExecutionTerminating())
49 isolate->ThrowException(exception);
42 } 50 }
43 static v8::Local<v8::Value> createDOMException(v8::Isolate*, int, const Stri ng& sanitizedMessage, const String& unsanitizedMessage, const v8::Local<v8::Obje ct>& creationContext);
44 51
45 static v8::Local<v8::Value> throwException(v8::Local<v8::Value>, v8::Isolate *); 52 static v8::Local<v8::Value> createGeneralError(v8::Isolate*, const String& m essage);
53 static v8::Local<v8::Value> createRangeError(v8::Isolate*, const String& mes sage);
54 static v8::Local<v8::Value> createReferenceError(v8::Isolate*, const String& message);
55 static v8::Local<v8::Value> createSyntaxError(v8::Isolate*, const String& me ssage);
56 static v8::Local<v8::Value> createTypeError(v8::Isolate*, const String& mess age);
46 57
47 static v8::Local<v8::Value> createGeneralError(v8::Isolate*, const String&); 58 static void throwGeneralError(v8::Isolate*, const String& message);
48 static v8::Local<v8::Value> throwGeneralError(v8::Isolate*, const String&); 59 static void throwRangeError(v8::Isolate*, const String& message);
49 static v8::Local<v8::Value> createTypeError(v8::Isolate*, const String&); 60 static void throwReferenceError(v8::Isolate*, const String& message);
50 static v8::Local<v8::Value> throwTypeError(v8::Isolate*, const String&); 61 static void throwSyntaxError(v8::Isolate*, const String& message);
51 static v8::Local<v8::Value> createRangeError(v8::Isolate*, const String&); 62 static void throwTypeError(v8::Isolate*, const String& message);
52 static v8::Local<v8::Value> throwRangeError(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&);
55 static v8::Local<v8::Value> createReferenceError(v8::Isolate*, const String& );
56 static v8::Local<v8::Value> throwReferenceError(v8::Isolate*, const String&) ;
57 }; 63 };
58 64
59 } // namespace blink 65 } // namespace blink
60 66
61 #endif // V8ThrowException_h 67 #endif // V8ThrowException_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698