| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/shill_client_unittest_base.h" | 5 #include "chromeos/dbus/shill_client_unittest_base.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 #include <stdint.h> |
| 9 |
| 7 #include "base/bind.h" | 10 #include "base/bind.h" |
| 8 #include "base/json/json_writer.h" | 11 #include "base/json/json_writer.h" |
| 9 #include "base/location.h" | 12 #include "base/location.h" |
| 10 #include "base/single_thread_task_runner.h" | 13 #include "base/single_thread_task_runner.h" |
| 11 #include "base/values.h" | 14 #include "base/values.h" |
| 12 #include "chromeos/network/shill_property_util.h" | 15 #include "chromeos/network/shill_property_util.h" |
| 13 #include "dbus/message.h" | 16 #include "dbus/message.h" |
| 14 #include "dbus/object_path.h" | 17 #include "dbus/object_path.h" |
| 15 #include "dbus/values_util.h" | 18 #include "dbus/values_util.h" |
| 16 #include "testing/gmock/include/gmock/gmock.h" | 19 #include "testing/gmock/include/gmock/gmock.h" |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 | 463 |
| 461 void ShillClientUnittestBase::OnCallMethodWithErrorCallback( | 464 void ShillClientUnittestBase::OnCallMethodWithErrorCallback( |
| 462 dbus::MethodCall* method_call, | 465 dbus::MethodCall* method_call, |
| 463 int timeout_ms, | 466 int timeout_ms, |
| 464 const dbus::ObjectProxy::ResponseCallback& response_callback, | 467 const dbus::ObjectProxy::ResponseCallback& response_callback, |
| 465 const dbus::ObjectProxy::ErrorCallback& error_callback) { | 468 const dbus::ObjectProxy::ErrorCallback& error_callback) { |
| 466 OnCallMethod(method_call, timeout_ms, response_callback); | 469 OnCallMethod(method_call, timeout_ms, response_callback); |
| 467 } | 470 } |
| 468 | 471 |
| 469 } // namespace chromeos | 472 } // namespace chromeos |
| OLD | NEW |