OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 10 matching lines...) Expand all Loading... |
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
23 */ | 23 */ |
24 | 24 |
25 #include "config.h" | 25 #include "config.h" |
26 | 26 |
27 #include "modules/mediastream/RTCStatsResponse.h" | 27 #include "modules/mediastream/RTCStatsResponse.h" |
28 | 28 |
29 namespace WebCore { | 29 namespace WebCore { |
30 | 30 |
31 PassRefPtr<RTCStatsResponse> RTCStatsResponse::create() | 31 PassRefPtrWillBeRawPtr<RTCStatsResponse> RTCStatsResponse::create() |
32 { | 32 { |
33 return adoptRef(new RTCStatsResponse()); | 33 return adoptRefWillBeNoop(new RTCStatsResponse()); |
34 } | 34 } |
35 | 35 |
36 RTCStatsResponse::RTCStatsResponse() | 36 RTCStatsResponse::RTCStatsResponse() |
37 { | 37 { |
38 ScriptWrappable::init(this); | 38 ScriptWrappable::init(this); |
39 } | 39 } |
40 | 40 |
41 PassRefPtr<RTCStatsReport> RTCStatsResponse::namedItem(const AtomicString& name) | 41 PassRefPtrWillBeRawPtr<RTCStatsReport> RTCStatsResponse::namedItem(const AtomicS
tring& name) |
42 { | 42 { |
43 if (m_idmap.find(name) != m_idmap.end()) | 43 if (m_idmap.find(name) != m_idmap.end()) |
44 return m_result[m_idmap.get(name)]; | 44 return m_result[m_idmap.get(name)]; |
45 return nullptr; | 45 return nullptr; |
46 } | 46 } |
47 | 47 |
48 size_t RTCStatsResponse::addReport(String id, String type, double timestamp) | 48 size_t RTCStatsResponse::addReport(String id, String type, double timestamp) |
49 { | 49 { |
50 m_result.append(RTCStatsReport::create(id, type, timestamp)); | 50 m_result.append(RTCStatsReport::create(id, type, timestamp)); |
51 m_idmap.add(id, m_result.size() - 1); | 51 m_idmap.add(id, m_result.size() - 1); |
52 return m_result.size() - 1; | 52 return m_result.size() - 1; |
53 } | 53 } |
54 | 54 |
55 void RTCStatsResponse::addStatistic(size_t report, String name, String value) | 55 void RTCStatsResponse::addStatistic(size_t report, String name, String value) |
56 { | 56 { |
57 ASSERT_WITH_SECURITY_IMPLICATION(report >= 0 && report < m_result.size()); | 57 ASSERT_WITH_SECURITY_IMPLICATION(report >= 0 && report < m_result.size()); |
58 m_result[report]->addStatistic(name, value); | 58 m_result[report]->addStatistic(name, value); |
59 } | 59 } |
60 | 60 |
| 61 void RTCStatsResponse::trace(Visitor* visitor) |
| 62 { |
| 63 visitor->trace(m_result); |
| 64 } |
| 65 |
61 } // namespace WebCore | 66 } // namespace WebCore |
OLD | NEW |