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

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

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 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 "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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698