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

Side by Side Diff: chromeos/dbus/fake_nfc_device_client.cc

Issue 99903003: nfc: Various fixes to the NFC D-Bus client in chromeos/dbus. (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chromeos/dbus/fake_nfc_device_client.h ('k') | chromeos/dbus/fake_nfc_tag_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chromeos/dbus/fake_nfc_device_client.h" 5 #include "chromeos/dbus/fake_nfc_device_client.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "dbus/object_path.h" 8 #include "dbus/object_path.h"
9 9
10 // TODO(armansito): For now, this class doesn't do anything. Implement fake 10 // TODO(armansito): For now, this class doesn't do anything. Implement fake
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 void FakeNfcDeviceClient::RemoveObserver(Observer* observer) { 55 void FakeNfcDeviceClient::RemoveObserver(Observer* observer) {
56 } 56 }
57 57
58 FakeNfcDeviceClient::Properties* 58 FakeNfcDeviceClient::Properties*
59 FakeNfcDeviceClient::GetProperties(const dbus::ObjectPath& object_path) { 59 FakeNfcDeviceClient::GetProperties(const dbus::ObjectPath& object_path) {
60 return NULL; 60 return NULL;
61 } 61 }
62 62
63 void FakeNfcDeviceClient::Push( 63 void FakeNfcDeviceClient::Push(
64 const dbus::ObjectPath& object_path, 64 const dbus::ObjectPath& object_path,
65 const std::map<std::string, std::string>& attributes, 65 const base::DictionaryValue& attributes,
66 const base::Closure& callback, 66 const base::Closure& callback,
67 const nfc_client_helpers::ErrorCallback& error_callback) { 67 const nfc_client_helpers::ErrorCallback& error_callback) {
68 VLOG(1) << "FakeNfcDeviceClient::Write called. Nothing happened."; 68 VLOG(1) << "FakeNfcDeviceClient::Write called. Nothing happened.";
69 } 69 }
70 70
71 } // namespace chromeos 71 } // namespace chromeos
OLDNEW
« no previous file with comments | « chromeos/dbus/fake_nfc_device_client.h ('k') | chromeos/dbus/fake_nfc_tag_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698