| Index: third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.h
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.h b/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.h
|
| index 072d09304e728c8fb0174fc78dca29a99637f02c..c43c21a437fe4cdd775868fe668465b56aea0ce5 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.h
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.h
|
| @@ -64,7 +64,7 @@ class MODULES_EXPORT WaitUntilObserver final
|
|
|
| WaitUntilObserver(ExecutionContext*, EventType, int event_id);
|
|
|
| - void ReportError(const ScriptValue&);
|
| + void ReportPromiseRejected(const ScriptValue&);
|
|
|
| void ConsumeWindowInteraction(TimerBase*);
|
|
|
| @@ -73,6 +73,7 @@ class MODULES_EXPORT WaitUntilObserver final
|
| int event_id_;
|
| int pending_activity_ = 0;
|
| bool has_error_ = false;
|
| + bool has_rejected_promise_ = false;
|
| bool event_dispatched_ = false;
|
| double event_dispatch_time_ = 0;
|
| TaskRunnerTimer<WaitUntilObserver> consume_window_interaction_timer_;
|
|
|