| Index: third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| index 821b3de34311df44b17143392eb45ab639dfafff..2210928659e4074606bc73b74029c8499211d3cc 100644
|
| --- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
|
| @@ -122,9 +122,9 @@ const char* dialogTypeToString(ChromeClient::DialogType dialogType)
|
| case ChromeClient::PromptDialog:
|
| return "prompt";
|
| case ChromeClient::HTMLDialog:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return "";
|
| }
|
|
|
| @@ -140,9 +140,9 @@ const char* dismissalTypeToString(Document::PageDismissalType dismissalType)
|
| case Document::UnloadDismissal:
|
| return "unload";
|
| case Document::NoDismissal:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return "";
|
| }
|
|
|
|
|