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 2566823002: Remove deprecated ExceptionState constructors. (Closed)
Patch Set: Created 4 years 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
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 ebd4dfc257795e23cadc87c0493f9fcb49f74aab..efb44777224d2d6d5b121432354905720a924dad 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ExceptionState.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ExceptionState.h
@@ -97,19 +97,6 @@ class CORE_EXPORT ExceptionState {
#endif // ENABLE(ASSERT)
}
- ExceptionState(ContextType context,
- const char* propertyName,
- const char* interfaceName,
- const v8::Local<v8::Object>& creationContext,
- v8::Isolate* isolate) // DEPRECATED
- : ExceptionState(isolate, context, interfaceName, propertyName) {}
-
- ExceptionState(ContextType context,
- const char* interfaceName,
- const v8::Local<v8::Object>& creationContext,
- v8::Isolate* isolate) // DEPRECATED
- : ExceptionState(isolate, context, interfaceName) {}
-
~ExceptionState() {
if (!m_exception.isEmpty()) {
V8ThrowException::throwException(m_isolate,

Powered by Google App Engine
This is Rietveld 408576698