| Index: third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
|
| index 21b372edb2c73c99425973d2189254807deab2c9..b66a2dbbaa386d625ac2515573c0ab4a61e14d8e 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
|
| @@ -371,7 +371,7 @@ static std::unique_ptr<KeyPath> KeyPathFromIDBKeyPath(
|
| break;
|
| }
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
|
|
| return key_path;
|
| @@ -941,7 +941,7 @@ class ClearObjectStore final
|
|
|
| DummyExceptionStateForTesting exception_state;
|
| idb_object_store->clear(GetScriptState(), exception_state);
|
| - ASSERT(!exception_state.HadException());
|
| + DCHECK(!exception_state.HadException());
|
| if (exception_state.HadException()) {
|
| ExceptionCode ec = exception_state.Code();
|
| request_callback_->sendFailure(Response::Error(
|
|
|