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

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

Issue 1262943002: Move ServiceWorker public headers to public/{web,platform}/modules/serviceworker (1/3) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased 2 Created 5 years, 4 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 | Annotate | Revision Log
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 "core/dom/ActiveDOMObject.h" 8 #include "core/dom/ActiveDOMObject.h"
9 #include "core/events/EventTarget.h" 9 #include "core/events/EventTarget.h"
10 #include "modules/serviceworkers/ServiceWorker.h" 10 #include "modules/serviceworkers/ServiceWorker.h"
11 #include "modules/serviceworkers/ServiceWorkerRegistration.h" 11 #include "modules/serviceworkers/ServiceWorkerRegistration.h"
12 #include "platform/Supplementable.h" 12 #include "platform/Supplementable.h"
13 #include "public/platform/WebServiceWorkerRegistration.h" 13 #include "public/platform/modules/serviceworker/WebServiceWorkerRegistration.h"
14 #include "public/platform/WebServiceWorkerRegistrationProxy.h" 14 #include "public/platform/modules/serviceworker/WebServiceWorkerRegistrationProx y.h"
15 #include "wtf/OwnPtr.h" 15 #include "wtf/OwnPtr.h"
16 #include "wtf/PassOwnPtr.h" 16 #include "wtf/PassOwnPtr.h"
17 #include "wtf/PassRefPtr.h" 17 #include "wtf/PassRefPtr.h"
18 #include "wtf/RefCounted.h" 18 #include "wtf/RefCounted.h"
19 19
20 namespace blink { 20 namespace blink {
21 21
22 class ScriptPromise; 22 class ScriptPromise;
23 class ScriptPromiseResolver; 23 class ScriptPromiseResolver;
24 class ScriptState; 24 class ScriptState;
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 } 100 }
101 101
102 private: 102 private:
103 WTF_MAKE_NONCOPYABLE(ServiceWorkerRegistrationArray); 103 WTF_MAKE_NONCOPYABLE(ServiceWorkerRegistrationArray);
104 ServiceWorkerRegistrationArray() = delete; 104 ServiceWorkerRegistrationArray() = delete;
105 }; 105 };
106 106
107 } // namespace blink 107 } // namespace blink
108 108
109 #endif // ServiceWorkerRegistration_h 109 #endif // ServiceWorkerRegistration_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698