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

Side by Side Diff: third_party/WebKit/Source/modules/serviceworkers/ExtendableMessageEvent.h

Issue 2217763003: Remove Blink-WebKit-only document.createEvent strings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 3 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ExtendableMessageEvent_h 5 #ifndef ExtendableMessageEvent_h
6 #define ExtendableMessageEvent_h 6 #define ExtendableMessageEvent_h
7 7
8 #include "modules/EventModules.h" 8 #include "modules/EventModules.h"
9 #include "modules/ModulesExport.h" 9 #include "modules/ModulesExport.h"
10 #include "modules/serviceworkers/ExtendableEvent.h" 10 #include "modules/serviceworkers/ExtendableEvent.h"
11 #include "modules/serviceworkers/ExtendableMessageEventInit.h" 11 #include "modules/serviceworkers/ExtendableMessageEventInit.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 class MODULES_EXPORT ExtendableMessageEvent final : public ExtendableEvent { 15 class MODULES_EXPORT ExtendableMessageEvent final : public ExtendableEvent {
16 DEFINE_WRAPPERTYPEINFO(); 16 DEFINE_WRAPPERTYPEINFO();
17 17
18 public: 18 public:
19 static ExtendableMessageEvent* create();
20 static ExtendableMessageEvent* create(const AtomicString& type, const Extend ableMessageEventInit& initializer); 19 static ExtendableMessageEvent* create(const AtomicString& type, const Extend ableMessageEventInit& initializer);
21 static ExtendableMessageEvent* create(const AtomicString& type, const Extend ableMessageEventInit& initializer, WaitUntilObserver*); 20 static ExtendableMessageEvent* create(const AtomicString& type, const Extend ableMessageEventInit& initializer, WaitUntilObserver*);
22 static ExtendableMessageEvent* create(PassRefPtr<SerializedScriptValue> data , const String& origin, MessagePortArray* ports, WaitUntilObserver*); 21 static ExtendableMessageEvent* create(PassRefPtr<SerializedScriptValue> data , const String& origin, MessagePortArray* ports, WaitUntilObserver*);
23 static ExtendableMessageEvent* create(PassRefPtr<SerializedScriptValue> data , const String& origin, MessagePortArray* ports, ServiceWorkerClient* source, Wa itUntilObserver*); 22 static ExtendableMessageEvent* create(PassRefPtr<SerializedScriptValue> data , const String& origin, MessagePortArray* ports, ServiceWorkerClient* source, Wa itUntilObserver*);
24 static ExtendableMessageEvent* create(PassRefPtr<SerializedScriptValue> data , const String& origin, MessagePortArray* ports, ServiceWorker* source, WaitUnti lObserver*); 23 static ExtendableMessageEvent* create(PassRefPtr<SerializedScriptValue> data , const String& origin, MessagePortArray* ports, ServiceWorker* source, WaitUnti lObserver*);
25 24
26 SerializedScriptValue* serializedData() const { return m_serializedData.get( ); } 25 SerializedScriptValue* serializedData() const { return m_serializedData.get( ); }
27 void setSerializedData(PassRefPtr<SerializedScriptValue> serializedData) { m _serializedData = serializedData; } 26 void setSerializedData(PassRefPtr<SerializedScriptValue> serializedData) { m _serializedData = serializedData; }
28 const String& origin() const { return m_origin; } 27 const String& origin() const { return m_origin; }
29 const String& lastEventId() const { return m_lastEventId; } 28 const String& lastEventId() const { return m_lastEventId; }
30 MessagePortArray ports(bool& isNull) const; 29 MessagePortArray ports(bool& isNull) const;
31 MessagePortArray ports() const; 30 MessagePortArray ports() const;
32 void source(ClientOrServiceWorkerOrMessagePort& result) const; 31 void source(ClientOrServiceWorkerOrMessagePort& result) const;
33 32
34 const AtomicString& interfaceName() const override; 33 const AtomicString& interfaceName() const override;
35 34
36 DECLARE_VIRTUAL_TRACE(); 35 DECLARE_VIRTUAL_TRACE();
37 36
38 private: 37 private:
39 ExtendableMessageEvent();
40 ExtendableMessageEvent(const AtomicString& type, const ExtendableMessageEven tInit& initializer); 38 ExtendableMessageEvent(const AtomicString& type, const ExtendableMessageEven tInit& initializer);
41 ExtendableMessageEvent(const AtomicString& type, const ExtendableMessageEven tInit& initializer, WaitUntilObserver*); 39 ExtendableMessageEvent(const AtomicString& type, const ExtendableMessageEven tInit& initializer, WaitUntilObserver*);
42 ExtendableMessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, MessagePortArray* ports, WaitUntilObserver*); 40 ExtendableMessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, MessagePortArray* ports, WaitUntilObserver*);
43 41
44 RefPtr<SerializedScriptValue> m_serializedData; 42 RefPtr<SerializedScriptValue> m_serializedData;
45 String m_origin; 43 String m_origin;
46 String m_lastEventId; 44 String m_lastEventId;
47 Member<ServiceWorkerClient> m_sourceAsClient; 45 Member<ServiceWorkerClient> m_sourceAsClient;
48 Member<ServiceWorker> m_sourceAsServiceWorker; 46 Member<ServiceWorker> m_sourceAsServiceWorker;
49 Member<MessagePort> m_sourceAsMessagePort; 47 Member<MessagePort> m_sourceAsMessagePort;
50 Member<MessagePortArray> m_ports; 48 Member<MessagePortArray> m_ports;
51 }; 49 };
52 50
53 } // namespace blink 51 } // namespace blink
54 52
55 #endif // ExtendableMessageEvent_h 53 #endif // ExtendableMessageEvent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698