Index: third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackInvocation.cpp |
diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackInvocation.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackInvocation.cpp |
index 0bd5a314363ede37ab240025ab1fc7f1a7ecd4fc..c9e6ff6521eb4f784478de1dc35c9bcf4aedc48f 100644 |
--- a/third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackInvocation.cpp |
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementCallbackInvocation.cpp |
@@ -66,7 +66,7 @@ void AttachedDetachedInvocation::dispatch(Element* element) { |
callbacks()->detached(element); |
break; |
default: |
- ASSERT_NOT_REACHED(); |
+ NOTREACHED(); |
} |
} |
@@ -130,7 +130,7 @@ V0CustomElementCallbackInvocation::createInvocation( |
case V0CustomElementLifecycleCallbacks::DetachedCallback: |
return new AttachedDetachedInvocation(callbacks, which); |
default: |
- ASSERT_NOT_REACHED(); |
+ NOTREACHED(); |
return nullptr; |
} |
} |