| Index: third_party/WebKit/Source/bindings/core/v8/ExceptionState.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ExceptionState.h b/third_party/WebKit/Source/bindings/core/v8/ExceptionState.h
|
| index e7858a49d4e07cdd2ef41f869b1277519bdba00e..c28703fe5982dcc69652cfab70a5941e2f652e87 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ExceptionState.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ExceptionState.h
|
| @@ -158,8 +158,8 @@ public:
|
| : ExceptionState(nullptr, ExceptionState::UnknownContext, nullptr, nullptr) { }
|
|
|
| void throwDOMException(const ExceptionCode&, const String& message) override;
|
| - void throwTypeError(const String& message = String()) override;
|
| - void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage = String()) override;
|
| + void throwTypeError(const String& message) override;
|
| + void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage) override;
|
| void throwRangeError(const String& message) override;
|
| void rethrowV8Exception(v8::Local<v8::Value>) override;
|
| };
|
| @@ -180,8 +180,8 @@ public:
|
| }
|
|
|
| void throwDOMException(const ExceptionCode&, const String& message) override;
|
| - void throwTypeError(const String& message = String()) override;
|
| - void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage = String()) override;
|
| + void throwTypeError(const String& message) override;
|
| + void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage) override;
|
| void throwRangeError(const String& message) override;
|
| void rethrowV8Exception(v8::Local<v8::Value>) override;
|
| };
|
|
|