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

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

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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 ServiceWorkerRegistration_h 5 #ifndef ServiceWorkerRegistration_h
6 #define ServiceWorkerRegistration_h 6 #define ServiceWorkerRegistration_h
7 7
8 #include <memory>
8 #include "bindings/core/v8/ActiveScriptWrappable.h" 9 #include "bindings/core/v8/ActiveScriptWrappable.h"
9 #include "bindings/core/v8/ScriptPromiseResolver.h" 10 #include "bindings/core/v8/ScriptPromiseResolver.h"
10 #include "core/dom/ContextLifecycleObserver.h" 11 #include "core/dom/ContextLifecycleObserver.h"
11 #include "core/events/EventTarget.h" 12 #include "core/events/EventTarget.h"
12 #include "modules/serviceworkers/NavigationPreloadManager.h" 13 #include "modules/serviceworkers/NavigationPreloadManager.h"
13 #include "modules/serviceworkers/ServiceWorker.h" 14 #include "modules/serviceworkers/ServiceWorker.h"
14 #include "modules/serviceworkers/ServiceWorkerRegistration.h" 15 #include "modules/serviceworkers/ServiceWorkerRegistration.h"
15 #include "platform/Supplementable.h" 16 #include "platform/Supplementable.h"
16 #include "public/platform/modules/serviceworker/WebServiceWorkerRegistration.h" 17 #include "public/platform/modules/serviceworker/WebServiceWorkerRegistration.h"
17 #include "public/platform/modules/serviceworker/WebServiceWorkerRegistrationProx y.h" 18 #include "public/platform/modules/serviceworker/WebServiceWorkerRegistrationProx y.h"
18 #include "wtf/Forward.h" 19 #include "wtf/Forward.h"
19 #include <memory>
20 20
21 namespace blink { 21 namespace blink {
22 22
23 class ScriptPromise; 23 class ScriptPromise;
24 class ScriptState; 24 class ScriptState;
25 25
26 // The implementation of a service worker registration object in Blink. Actual 26 // The implementation of a service worker registration object in Blink. Actual
27 // registration representation is in the embedder and this class accesses it 27 // registration representation is in the embedder and this class accesses it
28 // via WebServiceWorkerRegistration::Handle object. 28 // via WebServiceWorkerRegistration::Handle object.
29 class ServiceWorkerRegistration final 29 class ServiceWorkerRegistration final
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 registrations.push_back( 119 registrations.push_back(
120 ServiceWorkerRegistration::take(resolver, std::move(registration))); 120 ServiceWorkerRegistration::take(resolver, std::move(registration)));
121 } 121 }
122 return registrations; 122 return registrations;
123 } 123 }
124 }; 124 };
125 125
126 } // namespace blink 126 } // namespace blink
127 127
128 #endif // ServiceWorkerRegistration_h 128 #endif // ServiceWorkerRegistration_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698