Chromium Code Reviews

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

Issue 2323413002: Support ImageData cloning in the V8-based structured clone path. (Closed)
Patch Set: does win_clang like the other order better? Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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 18d94aaf2a9bbbb72ad9bfdf3c8b8791c5f28bac..8b8b3ef7659a8b34100315ac82ae85114ddc54b2 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ExceptionState.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ExceptionState.h
@@ -127,6 +127,7 @@ public:
// This method clears out the exception which |this| has.
void reject(ScriptPromiseResolver*);
+ ContextType context() const { return m_context; }
const char* propertyName() const { return m_propertyName; }
const char* interfaceName() const { return m_interfaceName; }

Powered by Google App Engine