Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Side by Side Diff: third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.h

Issue 1882003002: include RefCounted.h where needed, only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "core/dom/ContextLifecycleObserver.h" 8 #include "core/dom/ContextLifecycleObserver.h"
9 #include "modules/ModulesExport.h" 9 #include "modules/ModulesExport.h"
10 #include "modules/serviceworkers/ServiceWorkerGlobalScopeClient.h" 10 #include "modules/serviceworkers/ServiceWorkerGlobalScopeClient.h"
11 #include "platform/Timer.h" 11 #include "platform/Timer.h"
12 #include "wtf/Forward.h" 12 #include "wtf/Forward.h"
13 #include "wtf/RefCounted.h"
14 13
15 namespace blink { 14 namespace blink {
16 15
17 class ExceptionState; 16 class ExceptionState;
18 class ExecutionContext; 17 class ExecutionContext;
19 class ScriptPromise; 18 class ScriptPromise;
20 class ScriptState; 19 class ScriptState;
21 class ScriptValue; 20 class ScriptValue;
22 21
23 // Created for each ExtendableEvent instance. 22 // Created for each ExtendableEvent instance.
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 int m_eventID; 62 int m_eventID;
64 int m_pendingActivity; 63 int m_pendingActivity;
65 bool m_hasError; 64 bool m_hasError;
66 bool m_eventDispatched; 65 bool m_eventDispatched;
67 Timer<WaitUntilObserver> m_consumeWindowInteractionTimer; 66 Timer<WaitUntilObserver> m_consumeWindowInteractionTimer;
68 }; 67 };
69 68
70 } // namespace blink 69 } // namespace blink
71 70
72 #endif // WaitUntilObserver_h 71 #endif // WaitUntilObserver_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698