| Index: third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp b/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp
|
| index 839f336a2d17707a5f95b998d9b2cb2cfe5e688f..72cb101d481e16591b11e271f61ddaee2f37c202 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp
|
| @@ -62,7 +62,7 @@ class WaitUntilObserver::ThenFunction final : public ScriptFunction {
|
| resolve_type_(type) {}
|
|
|
| ScriptValue Call(ScriptValue value) override {
|
| - ASSERT(observer_);
|
| + DCHECK(observer_);
|
| ASSERT(resolve_type_ == kFulfilled || resolve_type_ == kRejected);
|
| if (resolve_type_ == kRejected) {
|
| observer_->ReportError(value);
|
|
|