| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WaitUntilObserver_h | 5 #ifndef WaitUntilObserver_h |
| 6 #define WaitUntilObserver_h | 6 #define WaitUntilObserver_h |
| 7 | 7 |
| 8 #include "modules/ModulesExport.h" | 8 #include "modules/ModulesExport.h" |
| 9 #include "modules/serviceworkers/ServiceWorkerGlobalScopeClient.h" | 9 #include "modules/serviceworkers/ServiceWorkerGlobalScopeClient.h" |
| 10 #include "platform/Timer.h" | 10 #include "platform/Timer.h" |
| 11 #include "wtf/Forward.h" | 11 #include "platform/wtf/Forward.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 class ExceptionState; | 15 class ExceptionState; |
| 16 class ExecutionContext; | 16 class ExecutionContext; |
| 17 class ScriptPromise; | 17 class ScriptPromise; |
| 18 class ScriptState; | 18 class ScriptState; |
| 19 class ScriptValue; | 19 class ScriptValue; |
| 20 | 20 |
| 21 // Created for each ExtendableEvent instance. | 21 // Created for each ExtendableEvent instance. |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 int pending_activity_ = 0; | 74 int pending_activity_ = 0; |
| 75 bool has_error_ = false; | 75 bool has_error_ = false; |
| 76 bool event_dispatched_ = false; | 76 bool event_dispatched_ = false; |
| 77 double event_dispatch_time_ = 0; | 77 double event_dispatch_time_ = 0; |
| 78 TaskRunnerTimer<WaitUntilObserver> consume_window_interaction_timer_; | 78 TaskRunnerTimer<WaitUntilObserver> consume_window_interaction_timer_; |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 } // namespace blink | 81 } // namespace blink |
| 82 | 82 |
| 83 #endif // WaitUntilObserver_h | 83 #endif // WaitUntilObserver_h |
| OLD | NEW |