| 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_cryptohome_client.h" | 5 #include "chromeos/dbus/fake_cryptohome_client.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/file_util.h" | 8 #include "base/files/file_util.h" |
| 9 #include "base/location.h" | 9 #include "base/location.h" |
| 10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| 11 #include "base/path_service.h" | 11 #include "base/path_service.h" |
| 12 #include "base/threading/thread_restrictions.h" | 12 #include "base/threading/thread_restrictions.h" |
| 13 #include "chromeos/chromeos_paths.h" | 13 #include "chromeos/chromeos_paths.h" |
| 14 #include "chromeos/dbus/cryptohome/key.pb.h" | 14 #include "chromeos/dbus/cryptohome/key.pb.h" |
| 15 #include "chromeos/dbus/cryptohome/rpc.pb.h" | 15 #include "chromeos/dbus/cryptohome/rpc.pb.h" |
| 16 #include "third_party/cros_system_api/dbus/service_constants.h" | 16 #include "third_party/cros_system_api/dbus/service_constants.h" |
| 17 #include "third_party/protobuf/src/google/protobuf/io/coded_stream.h" | 17 #include "third_party/protobuf/src/google/protobuf/io/coded_stream.h" |
| 18 #include "third_party/protobuf/src/google/protobuf/io/zero_copy_stream.h" | 18 #include "third_party/protobuf/src/google/protobuf/io/zero_copy_stream.h" |
| (...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 597 FROM_HERE, | 597 FROM_HERE, |
| 598 base::Bind(async_call_status_data_handler_, | 598 base::Bind(async_call_status_data_handler_, |
| 599 async_call_id_, | 599 async_call_id_, |
| 600 true, | 600 true, |
| 601 std::string())); | 601 std::string())); |
| 602 } | 602 } |
| 603 ++async_call_id_; | 603 ++async_call_id_; |
| 604 } | 604 } |
| 605 | 605 |
| 606 } // namespace chromeos | 606 } // namespace chromeos |
| OLD | NEW |