| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 PassRefPtrWillBeRawPtr<ServiceWorker> controller() { return m_controller.get
(); } | 71 PassRefPtrWillBeRawPtr<ServiceWorker> controller() { return m_controller.get
(); } |
| 72 ScriptPromise ready(ScriptState*); | 72 ScriptPromise ready(ScriptState*); |
| 73 WebServiceWorkerProvider* provider() { return m_provider; } | 73 WebServiceWorkerProvider* provider() { return m_provider; } |
| 74 | 74 |
| 75 ScriptPromise registerServiceWorker(ScriptState*, const String& pattern, con
st RegistrationOptions&); | 75 ScriptPromise registerServiceWorker(ScriptState*, const String& pattern, con
st RegistrationOptions&); |
| 76 ScriptPromise getRegistration(ScriptState*, const String& documentURL); | 76 ScriptPromise getRegistration(ScriptState*, const String& documentURL); |
| 77 ScriptPromise getRegistrations(ScriptState*); | 77 ScriptPromise getRegistrations(ScriptState*); |
| 78 | 78 |
| 79 // WebServiceWorkerProviderClient overrides. | 79 // WebServiceWorkerProviderClient overrides. |
| 80 virtual void setController(WebServiceWorker*, bool shouldNotifyControllerCha
nge) override; | 80 virtual void setController(WebServiceWorker*, bool shouldNotifyControllerCha
nge) override; |
| 81 virtual void dispatchMessageEvent(const WebString& message, const WebMessage
PortChannelArray&) override; | 81 virtual void dispatchMessageEvent(WebServiceWorker*, const WebString& messag
e, const WebMessagePortChannelArray&) override; |
| 82 | 82 |
| 83 // EventTarget overrides. | 83 // EventTarget overrides. |
| 84 virtual ExecutionContext* executionContext() const override { return Context
LifecycleObserver::executionContext(); } | 84 virtual ExecutionContext* executionContext() const override { return Context
LifecycleObserver::executionContext(); } |
| 85 virtual const AtomicString& interfaceName() const override; | 85 virtual const AtomicString& interfaceName() const override; |
| 86 | 86 |
| 87 DEFINE_ATTRIBUTE_EVENT_LISTENER(controllerchange); | 87 DEFINE_ATTRIBUTE_EVENT_LISTENER(controllerchange); |
| 88 DEFINE_ATTRIBUTE_EVENT_LISTENER(message); |
| 88 | 89 |
| 89 private: | 90 private: |
| 90 explicit ServiceWorkerContainer(ExecutionContext*); | 91 explicit ServiceWorkerContainer(ExecutionContext*); |
| 91 | 92 |
| 92 class GetRegistrationForReadyCallback; | 93 class GetRegistrationForReadyCallback; |
| 93 typedef ScriptPromiseProperty<Member<ServiceWorkerContainer>, Member<Service
WorkerRegistration>, Member<ServiceWorkerRegistration>> ReadyProperty; | 94 typedef ScriptPromiseProperty<Member<ServiceWorkerContainer>, Member<Service
WorkerRegistration>, Member<ServiceWorkerRegistration>> ReadyProperty; |
| 94 ReadyProperty* createReadyProperty(); | 95 ReadyProperty* createReadyProperty(); |
| 95 | 96 |
| 96 WebServiceWorkerProvider* m_provider; | 97 WebServiceWorkerProvider* m_provider; |
| 97 RefPtrWillBeMember<ServiceWorker> m_controller; | 98 RefPtrWillBeMember<ServiceWorker> m_controller; |
| 98 Member<ReadyProperty> m_ready; | 99 Member<ReadyProperty> m_ready; |
| 99 }; | 100 }; |
| 100 | 101 |
| 101 } // namespace blink | 102 } // namespace blink |
| 102 | 103 |
| 103 #endif // ServiceWorkerContainer_h | 104 #endif // ServiceWorkerContainer_h |
| OLD | NEW |