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

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

Issue 2298753002: binding: Updates ExceptionStatePlaceholder according to ExceptionState. (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/ExceptionStatePlaceholder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/ExceptionStatePlaceholder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698