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

Unified Diff: device/nfc/nfc_adapter.cc

Issue 2230083003: device: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « device/media_transfer_protocol/media_transfer_protocol_manager.cc ('k') | device/nfc/nfc_peer_chromeos.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/nfc/nfc_adapter.cc
diff --git a/device/nfc/nfc_adapter.cc b/device/nfc/nfc_adapter.cc
index 520d4f31092617d050c3932544abbf3715231023..ea51454b8c462f6ceeba882866079e495c4e578b 100644
--- a/device/nfc/nfc_adapter.cc
+++ b/device/nfc/nfc_adapter.cc
@@ -14,8 +14,8 @@ NfcAdapter::NfcAdapter() {
}
NfcAdapter::~NfcAdapter() {
- STLDeleteValues(&peers_);
- STLDeleteValues(&tags_);
+ base::STLDeleteValues(&peers_);
+ base::STLDeleteValues(&tags_);
}
void NfcAdapter::GetPeers(PeerList* peer_list) const {
« no previous file with comments | « device/media_transfer_protocol/media_transfer_protocol_manager.cc ('k') | device/nfc/nfc_peer_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698