| Index: chromeos/dbus/fake_debug_daemon_client.cc
|
| diff --git a/chromeos/dbus/fake_debug_daemon_client.cc b/chromeos/dbus/fake_debug_daemon_client.cc
|
| index a1d75f6275558f1ff88c0916101e6e0100652b9b..25deef11d0c60b30650acfc899b4f416c909e0a7 100644
|
| --- a/chromeos/dbus/fake_debug_daemon_client.cc
|
| +++ b/chromeos/dbus/fake_debug_daemon_client.cc
|
| @@ -120,4 +120,17 @@ void FakeDebugDaemonClient::TestICMPWithOptions(
|
| void FakeDebugDaemonClient::UploadCrashes() {
|
| }
|
|
|
| +void FakeDebugDaemonClient::EnableDebuggingFeatures(
|
| + const std::string& password,
|
| + const DebugDaemonClient::EnableDebuggingCallback& callback) {
|
| + base::MessageLoop::current()->PostTask(FROM_HERE,
|
| + base::Bind(callback, true));
|
| +}
|
| +
|
| +void FakeDebugDaemonClient::RemoveRootfsVerification(
|
| + const DebugDaemonClient::EnableDebuggingCallback& callback) {
|
| + base::MessageLoop::current()->PostTask(FROM_HERE,
|
| + base::Bind(callback, true));
|
| +}
|
| +
|
| } // namespace chromeos
|
|
|