OLD | NEW |
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 Loading... |
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 |
OLD | NEW |