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

Unified Diff: device/nfc/nfc_adapter.cc

Issue 77563002: nfc: Add native NFC API definitions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed clang error. Created 7 years 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/nfc/nfc_adapter.h ('k') | device/nfc/nfc_adapter_factory.h » ('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
new file mode 100644
index 0000000000000000000000000000000000000000..f1beb1a2f1fa9c188aee673f123a547ec6f2d429
--- /dev/null
+++ b/device/nfc/nfc_adapter.cc
@@ -0,0 +1,53 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "device/nfc/nfc_adapter.h"
+
+#include "base/lazy_instance.h"
+#include "base/memory/weak_ptr.h"
+#include "base/stl_util.h"
+#include "device/nfc/nfc_peer.h"
+#include "device/nfc/nfc_tag.h"
+
+namespace device {
+
+NfcAdapter::NfcAdapter() {
+}
+
+NfcAdapter::~NfcAdapter() {
+ STLDeleteValues(&peers_);
+ STLDeleteValues(&tags_);
+}
+
+void NfcAdapter::GetPeers(PeerList* peer_list) const {
+ peer_list->clear();
+ for (PeersMap::const_iterator iter = peers_.begin();
+ iter != peers_.end(); ++iter) {
+ peer_list->push_back(iter->second);
+ }
+}
+
+void NfcAdapter::GetTags(TagList* tag_list) const {
+ tag_list->clear();
+ for (TagsMap::const_iterator iter = tags_.begin();
+ iter != tags_.end(); ++iter) {
+ tag_list->push_back(iter->second);
+ }
+}
+
+NfcPeer* NfcAdapter::GetPeer(const std::string& identifier) const {
+ PeersMap::const_iterator iter = peers_.find(identifier);
+ if (iter != peers_.end())
+ return iter->second;
+ return NULL;
+}
+
+NfcTag* NfcAdapter::GetTag(const std::string& identifier) const {
+ TagsMap::const_iterator iter = tags_.find(identifier);
+ if (iter != tags_.end())
+ return iter->second;
+ return NULL;
+}
+
+} // namespace device
« no previous file with comments | « device/nfc/nfc_adapter.h ('k') | device/nfc/nfc_adapter_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698