| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 class ServiceWorkerThread; | 49 class ServiceWorkerThread; |
| 50 class WaitUntilObserver; | 50 class WaitUntilObserver; |
| 51 class WebServiceWorkerRegistration; | 51 class WebServiceWorkerRegistration; |
| 52 class WorkerThreadStartupData; | 52 class WorkerThreadStartupData; |
| 53 | 53 |
| 54 typedef RequestOrUSVString RequestInfo; | 54 typedef RequestOrUSVString RequestInfo; |
| 55 | 55 |
| 56 class ServiceWorkerGlobalScope final : public WorkerGlobalScope { | 56 class ServiceWorkerGlobalScope final : public WorkerGlobalScope { |
| 57 DEFINE_WRAPPERTYPEINFO(); | 57 DEFINE_WRAPPERTYPEINFO(); |
| 58 public: | 58 public: |
| 59 static PassRefPtrWillBeRawPtr<ServiceWorkerGlobalScope> create(ServiceWorker
Thread*, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>); | 59 static PassRefPtrWillBeRawPtr<ServiceWorkerGlobalScope> create(ServiceWorker
Thread*, PassOwnPtr<WorkerThreadStartupData>); |
| 60 | 60 |
| 61 virtual ~ServiceWorkerGlobalScope(); | 61 virtual ~ServiceWorkerGlobalScope(); |
| 62 virtual bool isServiceWorkerGlobalScope() const override { return true; } | 62 virtual bool isServiceWorkerGlobalScope() const override { return true; } |
| 63 | 63 |
| 64 // WorkerGlobalScope | 64 // WorkerGlobalScope |
| 65 virtual void didEvaluateWorkerScript() override; | 65 virtual void didEvaluateWorkerScript() override; |
| 66 | 66 |
| 67 // ServiceWorkerGlobalScope.idl | 67 // ServiceWorkerGlobalScope.idl |
| 68 ServiceWorkerClients* clients(); | 68 ServiceWorkerClients* clients(); |
| 69 ServiceWorkerRegistration* registration(); | 69 ServiceWorkerRegistration* registration(); |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 PersistentWillBeMember<ServiceWorkerRegistration> m_registration; | 105 PersistentWillBeMember<ServiceWorkerRegistration> m_registration; |
| 106 PersistentWillBeMember<CacheStorage> m_caches; | 106 PersistentWillBeMember<CacheStorage> m_caches; |
| 107 bool m_didEvaluateScript; | 107 bool m_didEvaluateScript; |
| 108 bool m_hadErrorInTopLevelEventHandler; | 108 bool m_hadErrorInTopLevelEventHandler; |
| 109 unsigned m_eventNestingLevel; | 109 unsigned m_eventNestingLevel; |
| 110 }; | 110 }; |
| 111 | 111 |
| 112 } // namespace blink | 112 } // namespace blink |
| 113 | 113 |
| 114 #endif // ServiceWorkerGlobalScope_h | 114 #endif // ServiceWorkerGlobalScope_h |
| OLD | NEW |