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

Side by Side Diff: Source/core/events/MessageEvent.h

Issue 176853004: Oilpan: move core/fileapi to oilpan's heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years, 9 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 /* 1 /*
2 * Copyright (C) 2007 Henry Mason (hmason@mac.com) 2 * Copyright (C) 2007 Henry Mason (hmason@mac.com)
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv ed. 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv ed.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 return adoptRef(new MessageEvent(data, origin, lastEventId, source, port s)); 62 return adoptRef(new MessageEvent(data, origin, lastEventId, source, port s));
63 } 63 }
64 static PassRefPtr<MessageEvent> create(PassOwnPtr<MessagePortChannelArray> c hannels, PassRefPtr<SerializedScriptValue> data, const String& origin = String() , const String& lastEventId = String(), PassRefPtr<EventTarget> source = nullptr ) 64 static PassRefPtr<MessageEvent> create(PassOwnPtr<MessagePortChannelArray> c hannels, PassRefPtr<SerializedScriptValue> data, const String& origin = String() , const String& lastEventId = String(), PassRefPtr<EventTarget> source = nullptr )
65 { 65 {
66 return adoptRef(new MessageEvent(data, origin, lastEventId, source, chan nels)); 66 return adoptRef(new MessageEvent(data, origin, lastEventId, source, chan nels));
67 } 67 }
68 static PassRefPtr<MessageEvent> create(const String& data, const String& ori gin = String()) 68 static PassRefPtr<MessageEvent> create(const String& data, const String& ori gin = String())
69 { 69 {
70 return adoptRef(new MessageEvent(data, origin)); 70 return adoptRef(new MessageEvent(data, origin));
71 } 71 }
72 static PassRefPtr<MessageEvent> create(PassRefPtr<Blob> data, const String& origin = String()) 72 static PassRefPtr<MessageEvent> create(PassRefPtrWillBeRawPtr<Blob> data, co nst String& origin = String())
73 { 73 {
74 return adoptRef(new MessageEvent(data, origin)); 74 return adoptRef(new MessageEvent(data, origin));
75 } 75 }
76 static PassRefPtr<MessageEvent> create(PassRefPtr<ArrayBuffer> data, const S tring& origin = String()) 76 static PassRefPtr<MessageEvent> create(PassRefPtr<ArrayBuffer> data, const S tring& origin = String())
77 { 77 {
78 return adoptRef(new MessageEvent(data, origin)); 78 return adoptRef(new MessageEvent(data, origin));
79 } 79 }
80 static PassRefPtr<MessageEvent> create(const AtomicString& type, const Messa geEventInit& initializer, ExceptionState&); 80 static PassRefPtr<MessageEvent> create(const AtomicString& type, const Messa geEventInit& initializer, ExceptionState&);
81 virtual ~MessageEvent(); 81 virtual ~MessageEvent();
82 82
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 void entangleMessagePorts(ExecutionContext*); 114 void entangleMessagePorts(ExecutionContext*);
115 115
116 private: 116 private:
117 MessageEvent(); 117 MessageEvent();
118 MessageEvent(const AtomicString&, const MessageEventInit&); 118 MessageEvent(const AtomicString&, const MessageEventInit&);
119 MessageEvent(const String& origin, const String& lastEventId, PassRefPtr<Eve ntTarget> source, PassOwnPtr<MessagePortArray>); 119 MessageEvent(const String& origin, const String& lastEventId, PassRefPtr<Eve ntTarget> source, PassOwnPtr<MessagePortArray>);
120 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, c onst String& lastEventId, PassRefPtr<EventTarget> source, PassOwnPtr<MessagePort Array>); 120 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, c onst String& lastEventId, PassRefPtr<EventTarget> source, PassOwnPtr<MessagePort Array>);
121 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, c onst String& lastEventId, PassRefPtr<EventTarget> source, PassOwnPtr<MessagePort ChannelArray>); 121 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, c onst String& lastEventId, PassRefPtr<EventTarget> source, PassOwnPtr<MessagePort ChannelArray>);
122 122
123 explicit MessageEvent(const String& data, const String& origin); 123 explicit MessageEvent(const String& data, const String& origin);
124 explicit MessageEvent(PassRefPtr<Blob> data, const String& origin); 124 explicit MessageEvent(PassRefPtrWillBeRawPtr<Blob> data, const String& origi n);
125 explicit MessageEvent(PassRefPtr<ArrayBuffer> data, const String& origin); 125 explicit MessageEvent(PassRefPtr<ArrayBuffer> data, const String& origin);
126 126
127 DataType m_dataType; 127 DataType m_dataType;
128 RefPtr<SerializedScriptValue> m_dataAsSerializedScriptValue; 128 RefPtr<SerializedScriptValue> m_dataAsSerializedScriptValue;
129 String m_dataAsString; 129 String m_dataAsString;
130 RefPtr<Blob> m_dataAsBlob; 130 RefPtrWillBePersistent<Blob> m_dataAsBlob;
131 RefPtr<ArrayBuffer> m_dataAsArrayBuffer; 131 RefPtr<ArrayBuffer> m_dataAsArrayBuffer;
132 String m_origin; 132 String m_origin;
133 String m_lastEventId; 133 String m_lastEventId;
134 RefPtr<EventTarget> m_source; 134 RefPtr<EventTarget> m_source;
135 // m_ports are the MessagePorts in an engtangled state, and m_channels are 135 // m_ports are the MessagePorts in an engtangled state, and m_channels are
136 // the MessageChannels in a disentangled state. Only one of them can be 136 // the MessageChannels in a disentangled state. Only one of them can be
137 // non-empty at a time. entangleMessagePorts() moves between the states. 137 // non-empty at a time. entangleMessagePorts() moves between the states.
138 OwnPtr<MessagePortArray> m_ports; 138 OwnPtr<MessagePortArray> m_ports;
139 OwnPtr<MessagePortChannelArray> m_channels; 139 OwnPtr<MessagePortChannelArray> m_channels;
140 }; 140 };
141 141
142 } // namespace WebCore 142 } // namespace WebCore
143 143
144 #endif // MessageEvent_h 144 #endif // MessageEvent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698