| OLD | NEW |
| 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 24 matching lines...) Expand all Loading... |
| 35 #include "modules/ModulesExport.h" | 35 #include "modules/ModulesExport.h" |
| 36 #include "platform/heap/Handle.h" | 36 #include "platform/heap/Handle.h" |
| 37 #include "public/platform/modules/serviceworker/WebServiceWorkerRegistration.h" | 37 #include "public/platform/modules/serviceworker/WebServiceWorkerRegistration.h" |
| 38 #include "wtf/Assertions.h" | 38 #include "wtf/Assertions.h" |
| 39 #include "wtf/Forward.h" | 39 #include "wtf/Forward.h" |
| 40 #include <memory> | 40 #include <memory> |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 class Dictionary; | 44 class Dictionary; |
| 45 class Request; | |
| 46 class ScriptPromise; | 45 class ScriptPromise; |
| 47 class ScriptState; | 46 class ScriptState; |
| 48 class ServiceWorkerClients; | 47 class ServiceWorkerClients; |
| 49 class ServiceWorkerRegistration; | 48 class ServiceWorkerRegistration; |
| 50 class ServiceWorkerThread; | 49 class ServiceWorkerThread; |
| 51 class WaitUntilObserver; | 50 class WaitUntilObserver; |
| 52 class WorkerThreadStartupData; | 51 class WorkerThreadStartupData; |
| 53 | 52 |
| 54 typedef RequestOrUSVString RequestInfo; | 53 typedef RequestOrUSVString RequestInfo; |
| 55 | 54 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 129 |
| 131 DEFINE_TYPE_CASTS(ServiceWorkerGlobalScope, | 130 DEFINE_TYPE_CASTS(ServiceWorkerGlobalScope, |
| 132 ExecutionContext, | 131 ExecutionContext, |
| 133 context, | 132 context, |
| 134 context->isServiceWorkerGlobalScope(), | 133 context->isServiceWorkerGlobalScope(), |
| 135 context.isServiceWorkerGlobalScope()); | 134 context.isServiceWorkerGlobalScope()); |
| 136 | 135 |
| 137 } // namespace blink | 136 } // namespace blink |
| 138 | 137 |
| 139 #endif // ServiceWorkerGlobalScope_h | 138 #endif // ServiceWorkerGlobalScope_h |
| OLD | NEW |