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

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

Issue 316443004: Oilpan: Remove ref counting from EventTarget and all uses of Pass/RefPtr<EventTarget>. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
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 25 matching lines...) Expand all
36 #include "core/frame/DOMWindow.h" 36 #include "core/frame/DOMWindow.h"
37 #include "wtf/ArrayBuffer.h" 37 #include "wtf/ArrayBuffer.h"
38 38
39 namespace WebCore { 39 namespace WebCore {
40 40
41 struct MessageEventInit : public EventInit { 41 struct MessageEventInit : public EventInit {
42 MessageEventInit(); 42 MessageEventInit();
43 43
44 String origin; 44 String origin;
45 String lastEventId; 45 String lastEventId;
46 RefPtr<EventTarget> source; 46 RefPtrWillBeMember<EventTarget> source;
47 MessagePortArray ports; 47 MessagePortArray ports;
48 }; 48 };
49 49
50 class MessageEvent FINAL : public Event { 50 class MessageEvent FINAL : public Event {
51 public: 51 public:
52 static PassRefPtrWillBeRawPtr<MessageEvent> create() 52 static PassRefPtrWillBeRawPtr<MessageEvent> create()
53 { 53 {
54 return adoptRefWillBeNoop(new MessageEvent); 54 return adoptRefWillBeNoop(new MessageEvent);
55 } 55 }
56 static PassRefPtrWillBeRawPtr<MessageEvent> create(PassOwnPtr<MessagePortArr ay> ports, const String& origin = String(), const String& lastEventId = String() , PassRefPtrWillBeRawPtr<EventTarget> source = nullptr) 56 static PassRefPtrWillBeRawPtr<MessageEvent> create(PassOwnPtr<MessagePortArr ay> ports, const String& origin = String(), const String& lastEventId = String() , PassRefPtrWillBeRawPtr<EventTarget> source = nullptr)
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 // m_ports are the MessagePorts in an engtangled state, and m_channels are 137 // m_ports are the MessagePorts in an engtangled state, and m_channels are
138 // the MessageChannels in a disentangled state. Only one of them can be 138 // the MessageChannels in a disentangled state. Only one of them can be
139 // non-empty at a time. entangleMessagePorts() moves between the states. 139 // non-empty at a time. entangleMessagePorts() moves between the states.
140 OwnPtr<MessagePortArray> m_ports; 140 OwnPtr<MessagePortArray> m_ports;
141 OwnPtr<MessagePortChannelArray> m_channels; 141 OwnPtr<MessagePortChannelArray> m_channels;
142 }; 142 };
143 143
144 } // namespace WebCore 144 } // namespace WebCore
145 145
146 #endif // MessageEvent_h 146 #endif // MessageEvent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698