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

Side by Side Diff: third_party/WebKit/Source/modules/background_fetch/BackgroundFetchFailEvent.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 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 BackgroundFetchFailEvent_h 5 #ifndef BackgroundFetchFailEvent_h
6 #define BackgroundFetchFailEvent_h 6 #define BackgroundFetchFailEvent_h
7 7
8 #include "modules/ModulesExport.h" 8 #include "modules/ModulesExport.h"
9 #include "modules/background_fetch/BackgroundFetchEvent.h" 9 #include "modules/background_fetch/BackgroundFetchEvent.h"
10 #include "platform/heap/Handle.h" 10 #include "platform/heap/Handle.h"
11 #include "platform/wtf/text/AtomicString.h"
11 #include "public/platform/WebVector.h" 12 #include "public/platform/WebVector.h"
12 #include "wtf/text/AtomicString.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class BackgroundFetchFailEventInit; 16 class BackgroundFetchFailEventInit;
17 class BackgroundFetchSettledFetch; 17 class BackgroundFetchSettledFetch;
18 class ScriptState; 18 class ScriptState;
19 struct WebBackgroundFetchSettledFetch; 19 struct WebBackgroundFetchSettledFetch;
20 20
21 class MODULES_EXPORT BackgroundFetchFailEvent final 21 class MODULES_EXPORT BackgroundFetchFailEvent final
22 : public BackgroundFetchEvent { 22 : public BackgroundFetchEvent {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 const WebVector<WebBackgroundFetchSettledFetch>& fetches, 58 const WebVector<WebBackgroundFetchSettledFetch>& fetches,
59 ScriptState*, 59 ScriptState*,
60 WaitUntilObserver*); 60 WaitUntilObserver*);
61 61
62 HeapVector<Member<BackgroundFetchSettledFetch>> fetches_; 62 HeapVector<Member<BackgroundFetchSettledFetch>> fetches_;
63 }; 63 };
64 64
65 } // namespace blink 65 } // namespace blink
66 66
67 #endif // BackgroundFetchFailEvent_h 67 #endif // BackgroundFetchFailEvent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698