| 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 24 matching lines...) Expand all Loading... |
| 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 PassRefPtr<RTCStatsReport> RTCStatsResponse::namedItem(const AtomicString& 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 0; | 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 } // namespace WebCore | 61 } // namespace WebCore |
| OLD | NEW |