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

Side by Side Diff: Source/web/WebDOMMessageEvent.cpp

Issue 1304553002: Remove the deprecated messageevent API (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add class documentation Created 5 years, 4 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
« no previous file with comments | « no previous file | public/web/WebDOMMessageEvent.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 RefPtrWillBeRawPtr<Document> coreDocument = PassRefPtrWillBeRawPtr<Docum ent>(targetDocument); 56 RefPtrWillBeRawPtr<Document> coreDocument = PassRefPtrWillBeRawPtr<Docum ent>(targetDocument);
57 ports = MessagePort::toMessagePortArray(coreDocument.get(), webChannels) ; 57 ports = MessagePort::toMessagePortArray(coreDocument.get(), webChannels) ;
58 } 58 }
59 // Use an empty array for |ports| when it is null because this function 59 // Use an empty array for |ports| when it is null because this function
60 // is used to implement postMessage(). 60 // is used to implement postMessage().
61 if (!ports) 61 if (!ports)
62 ports = new MessagePortArray; 62 ports = new MessagePortArray;
63 unwrap<MessageEvent>()->initMessageEvent(type, canBubble, cancelable, messag eData, origin, lastEventId, window, ports); 63 unwrap<MessageEvent>()->initMessageEvent(type, canBubble, cancelable, messag eData, origin, lastEventId, window, ports);
64 } 64 }
65 65
66 void WebDOMMessageEvent::initMessageEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData, const WebString& origin, const WebFrame* sourceFrame, const WebString& lastEventId, const WebMess agePortChannelArray& webChannels)
67 {
68 WebDocument document;
69 if (sourceFrame && sourceFrame->isWebLocalFrame()) {
70 DOMWindow* window = toCoreFrame(sourceFrame)->domWindow();
71 document = toLocalDOMWindow(window)->document();
72 }
73 initMessageEvent(type, canBubble, cancelable, messageData, origin, sourceFra me, document, lastEventId, webChannels);
74 }
75
76 WebSerializedScriptValue WebDOMMessageEvent::data() const 66 WebSerializedScriptValue WebDOMMessageEvent::data() const
77 { 67 {
78 return WebSerializedScriptValue(constUnwrap<MessageEvent>()->dataAsSerialize dScriptValue()); 68 return WebSerializedScriptValue(constUnwrap<MessageEvent>()->dataAsSerialize dScriptValue());
79 } 69 }
80 70
81 WebString WebDOMMessageEvent::origin() const 71 WebString WebDOMMessageEvent::origin() const
82 { 72 {
83 return WebString(constUnwrap<MessageEvent>()->origin()); 73 return WebString(constUnwrap<MessageEvent>()->origin());
84 } 74 }
85 75
86 WebMessagePortChannelArray WebDOMMessageEvent::releaseChannels() 76 WebMessagePortChannelArray WebDOMMessageEvent::releaseChannels()
87 { 77 {
88 MessagePortChannelArray* channels = constUnwrap<MessageEvent>()->channels(); 78 MessagePortChannelArray* channels = constUnwrap<MessageEvent>()->channels();
89 WebMessagePortChannelArray webChannels(channels ? channels->size() : 0); 79 WebMessagePortChannelArray webChannels(channels ? channels->size() : 0);
90 if (channels) { 80 if (channels) {
91 for (size_t i = 0; i < channels->size(); ++i) 81 for (size_t i = 0; i < channels->size(); ++i)
92 webChannels[i] = (*channels)[i].leakPtr(); 82 webChannels[i] = (*channels)[i].leakPtr();
93 } 83 }
94 return webChannels; 84 return webChannels;
95 } 85 }
96 86
97 } // namespace blink 87 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | public/web/WebDOMMessageEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698