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 2725a799024db97deeda08ccff1391a01a74c273..9254ff0e17699f5130fac155c35a0a3c1ca8f88d 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/ExceptionState.h |
+++ b/third_party/WebKit/Source/bindings/core/v8/ExceptionState.h |
@@ -213,8 +213,10 @@ class CORE_EXPORT DummyExceptionStateForTesting final : public ExceptionState { |
// Syntax sugar for DummyExceptionStateForTesting. |
// This can be used as a default value of an ExceptionState parameter like this: |
// |
-// Node* removeChild(Node* child, ExceptionState& = IGNORE_EXCEPTION) |
-#define IGNORE_EXCEPTION (::blink::DummyExceptionStateForTesting().returnThis()) |
+// Node* removeChild(Node* child, ExceptionState& = |
+// IGNORE_EXCEPTION_FOR_TESTING) |
Yuki
2017/01/06 13:05:27
nit: indent 4 spaces?
haraken
2017/01/06 13:09:16
Fixed.
|
+#define IGNORE_EXCEPTION_FOR_TESTING \ |
+ (::blink::DummyExceptionStateForTesting().returnThis()) |
} // namespace blink |