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

Side by Side Diff: Source/modules/serviceworkers/ServiceWorkerContainer.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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 23 matching lines...) Expand all
34 #include "bindings/core/v8/ScriptPromise.h" 34 #include "bindings/core/v8/ScriptPromise.h"
35 #include "bindings/core/v8/ScriptPromiseProperty.h" 35 #include "bindings/core/v8/ScriptPromiseProperty.h"
36 #include "bindings/core/v8/ScriptWrappable.h" 36 #include "bindings/core/v8/ScriptWrappable.h"
37 #include "core/dom/ContextLifecycleObserver.h" 37 #include "core/dom/ContextLifecycleObserver.h"
38 #include "core/events/EventTarget.h" 38 #include "core/events/EventTarget.h"
39 #include "modules/ModulesExport.h" 39 #include "modules/ModulesExport.h"
40 #include "modules/serviceworkers/RegistrationOptions.h" 40 #include "modules/serviceworkers/RegistrationOptions.h"
41 #include "modules/serviceworkers/ServiceWorker.h" 41 #include "modules/serviceworkers/ServiceWorker.h"
42 #include "modules/serviceworkers/ServiceWorkerRegistration.h" 42 #include "modules/serviceworkers/ServiceWorkerRegistration.h"
43 #include "platform/heap/Handle.h" 43 #include "platform/heap/Handle.h"
44 #include "public/platform/WebServiceWorkerProviderClient.h" 44 #include "public/platform/modules/serviceworker/WebServiceWorkerProviderClient.h "
45 #include "wtf/Forward.h" 45 #include "wtf/Forward.h"
46 #include "wtf/PassRefPtr.h" 46 #include "wtf/PassRefPtr.h"
47 #include "wtf/RefPtr.h" 47 #include "wtf/RefPtr.h"
48 48
49 namespace blink { 49 namespace blink {
50 50
51 class ExecutionContext; 51 class ExecutionContext;
52 class WebServiceWorker; 52 class WebServiceWorker;
53 class WebServiceWorkerProvider; 53 class WebServiceWorkerProvider;
54 class WebServiceWorkerRegistration; 54 class WebServiceWorkerRegistration;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 ReadyProperty* createReadyProperty(); 95 ReadyProperty* createReadyProperty();
96 96
97 WebServiceWorkerProvider* m_provider; 97 WebServiceWorkerProvider* m_provider;
98 RefPtrWillBeMember<ServiceWorker> m_controller; 98 RefPtrWillBeMember<ServiceWorker> m_controller;
99 Member<ReadyProperty> m_ready; 99 Member<ReadyProperty> m_ready;
100 }; 100 };
101 101
102 } // namespace blink 102 } // namespace blink
103 103
104 #endif // ServiceWorkerContainer_h 104 #endif // ServiceWorkerContainer_h
OLDNEW
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerClients.cpp ('k') | Source/modules/serviceworkers/ServiceWorkerContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698