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

Side by Side Diff: Source/modules/mediastream/RTCStatsResponse.cpp

Issue 170603003: Use nullptr_t for RefPtr, PassRefPtr and RawPtr. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final rebase Created 6 years, 10 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) 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
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
OLDNEW
« no previous file with comments | « Source/modules/mediastream/RTCSessionDescription.cpp ('k') | Source/modules/mediastream/UserMediaRequest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698