| Index: Source/bindings/core/v8/V8ThrowException.h
|
| diff --git a/Source/bindings/core/v8/V8ThrowException.h b/Source/bindings/core/v8/V8ThrowException.h
|
| index 73ba36964211ce3e1a09b85b306e6106cc4710d9..7d30a5d6df562774a15b96f6fbf3ef739f928e29 100644
|
| --- a/Source/bindings/core/v8/V8ThrowException.h
|
| +++ b/Source/bindings/core/v8/V8ThrowException.h
|
| @@ -49,10 +49,10 @@ public:
|
|
|
| static v8::Handle<v8::Value> createGeneralError(v8::Isolate*, const String&);
|
| static v8::Handle<v8::Value> throwGeneralError(v8::Isolate*, const String&);
|
| - static v8::Handle<v8::Value> createTypeError(const String&, v8::Isolate*);
|
| + static v8::Handle<v8::Value> createTypeError(v8::Isolate*, const String&);
|
| static v8::Handle<v8::Value> throwTypeError(const String&, v8::Isolate*);
|
| - static v8::Handle<v8::Value> createRangeError(const String&, v8::Isolate*);
|
| - static v8::Handle<v8::Value> throwRangeError(const String&, v8::Isolate*);
|
| + static v8::Handle<v8::Value> createRangeError(v8::Isolate*, const String&);
|
| + static v8::Handle<v8::Value> throwRangeError(v8::Isolate*, const String&);
|
| static v8::Handle<v8::Value> createSyntaxError(v8::Isolate*, const String&);
|
| static v8::Handle<v8::Value> throwSyntaxError(v8::Isolate*, const String&);
|
| static v8::Handle<v8::Value> createReferenceError(v8::Isolate*, const String&);
|
|
|