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

Unified Diff: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp

Issue 1878493002: ASSERT_NOT_REACHED() -> NOTREACHED() in web. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
Index: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
index 349ff5f7b6e70226f7033198e5fd1a184afbf349..be7f985f36893931782e855298dd1514d62bb702 100644
--- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
+++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
@@ -256,7 +256,7 @@ void WebFrameWidgetImpl::updateAllLifecyclePhases()
void WebFrameWidgetImpl::paint(WebCanvas* canvas, const WebRect& rect)
{
// Out-of-process iframes require compositing.
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
@@ -361,7 +361,7 @@ WebInputEventResult WebFrameWidgetImpl::handleInputEvent(const WebInputEvent& in
gestureIndicator = adoptPtr(new UserGestureIndicator(m_mouseCaptureGestureToken.release()));
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
node->dispatchMouseEvent(
@@ -750,7 +750,7 @@ WebInputEventResult WebFrameWidgetImpl::handleGestureEvent(const WebGestureEvent
m_client->didHandleGestureEvent(event, eventCancelled);
return WebInputEventResult::NotHandled;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
LocalFrame* frame = m_localRoot->frame();
eventResult = frame->eventHandler().handleGestureEvent(PlatformGestureEventBuilder(frame->view(), event));
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameSerializerImpl.cpp ('k') | third_party/WebKit/Source/web/WebIDBKey.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698