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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 | 61 |
62 virtual ~ServiceWorkerGlobalScope(); | 62 virtual ~ServiceWorkerGlobalScope(); |
63 virtual bool isServiceWorkerGlobalScope() const override { return true; } | 63 virtual bool isServiceWorkerGlobalScope() const override { return true; } |
64 | 64 |
65 // WorkerGlobalScope | 65 // WorkerGlobalScope |
66 virtual void didEvaluateWorkerScript() override; | 66 virtual void didEvaluateWorkerScript() override; |
67 | 67 |
68 // ServiceWorkerGlobalScope.idl | 68 // ServiceWorkerGlobalScope.idl |
69 ServiceWorkerClients* clients(); | 69 ServiceWorkerClients* clients(); |
70 ServiceWorkerRegistration* registration(); | 70 ServiceWorkerRegistration* registration(); |
71 PassRefPtrWillBeRawPtr<StashedPortCollection> ports(); | 71 StashedPortCollection* ports(); |
72 | 72 |
73 ScriptPromise fetch(ScriptState*, const RequestInfo&, const Dictionary&, Exc
eptionState&); | 73 ScriptPromise fetch(ScriptState*, const RequestInfo&, const Dictionary&, Exc
eptionState&); |
74 | 74 |
75 void close(ExceptionState&); | 75 void close(ExceptionState&); |
76 | 76 |
77 ScriptPromise skipWaiting(ScriptState*); | 77 ScriptPromise skipWaiting(ScriptState*); |
78 | 78 |
79 void setRegistration(WebServiceWorkerRegistration*); | 79 void setRegistration(WebServiceWorkerRegistration*); |
80 | 80 |
81 // EventTarget | 81 // EventTarget |
(...skipping 15 matching lines...) Expand all Loading... |
97 class SkipWaitingCallback; | 97 class SkipWaitingCallback; |
98 | 98 |
99 ServiceWorkerGlobalScope(const KURL&, const String& userAgent, ServiceWorker
Thread*, double timeOrigin, const SecurityOrigin*, PassOwnPtrWillBeRawPtr<Worker
Clients>); | 99 ServiceWorkerGlobalScope(const KURL&, const String& userAgent, ServiceWorker
Thread*, double timeOrigin, const SecurityOrigin*, PassOwnPtrWillBeRawPtr<Worker
Clients>); |
100 void importScripts(const Vector<String>& urls, ExceptionState&) override; | 100 void importScripts(const Vector<String>& urls, ExceptionState&) override; |
101 PassOwnPtr<CachedMetadataHandler> createWorkerScriptCachedMetadataHandler(co
nst KURL& scriptURL, const Vector<char>* metaData) override; | 101 PassOwnPtr<CachedMetadataHandler> createWorkerScriptCachedMetadataHandler(co
nst KURL& scriptURL, const Vector<char>* metaData) override; |
102 void logExceptionToConsole(const String& errorMessage, int scriptId, const S
tring& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<Scrip
tCallStack>) override; | 102 void logExceptionToConsole(const String& errorMessage, int scriptId, const S
tring& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<Scrip
tCallStack>) override; |
103 void scriptLoaded(size_t scriptSize, size_t cachedMetadataSize) override; | 103 void scriptLoaded(size_t scriptSize, size_t cachedMetadataSize) override; |
104 | 104 |
105 PersistentWillBeMember<ServiceWorkerClients> m_clients; | 105 PersistentWillBeMember<ServiceWorkerClients> m_clients; |
106 PersistentWillBeMember<ServiceWorkerRegistration> m_registration; | 106 PersistentWillBeMember<ServiceWorkerRegistration> m_registration; |
107 RefPtrWillBeMember<StashedPortCollection> m_ports; | 107 PersistentWillBeMember<StashedPortCollection> m_ports; |
108 bool m_didEvaluateScript; | 108 bool m_didEvaluateScript; |
109 bool m_hadErrorInTopLevelEventHandler; | 109 bool m_hadErrorInTopLevelEventHandler; |
110 unsigned m_eventNestingLevel; | 110 unsigned m_eventNestingLevel; |
111 size_t m_scriptCount; | 111 size_t m_scriptCount; |
112 size_t m_scriptTotalSize; | 112 size_t m_scriptTotalSize; |
113 size_t m_scriptCachedMetadataTotalSize; | 113 size_t m_scriptCachedMetadataTotalSize; |
114 }; | 114 }; |
115 | 115 |
116 DEFINE_TYPE_CASTS(ServiceWorkerGlobalScope, ExecutionContext, context, context->
isServiceWorkerGlobalScope(), context.isServiceWorkerGlobalScope()); | 116 DEFINE_TYPE_CASTS(ServiceWorkerGlobalScope, ExecutionContext, context, context->
isServiceWorkerGlobalScope(), context.isServiceWorkerGlobalScope()); |
117 | 117 |
118 } // namespace blink | 118 } // namespace blink |
119 | 119 |
120 #endif // ServiceWorkerGlobalScope_h | 120 #endif // ServiceWorkerGlobalScope_h |
OLD | NEW |