| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/lorgnette_manager_client.h" | 5 #include "chromeos/dbus/lorgnette_manager_client.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/location.h" | 12 #include "base/location.h" |
| 13 #include "base/memory/ref_counted_memory.h" | 13 #include "base/memory/ref_counted_memory.h" |
| 14 #include "base/platform_file.h" | |
| 15 #include "base/threading/worker_pool.h" | 14 #include "base/threading/worker_pool.h" |
| 16 #include "dbus/bus.h" | 15 #include "dbus/bus.h" |
| 17 #include "dbus/message.h" | 16 #include "dbus/message.h" |
| 18 #include "dbus/object_path.h" | 17 #include "dbus/object_path.h" |
| 19 #include "dbus/object_proxy.h" | 18 #include "dbus/object_proxy.h" |
| 20 #include "net/base/file_stream.h" | 19 #include "net/base/file_stream.h" |
| 21 #include "third_party/cros_system_api/dbus/service_constants.h" | 20 #include "third_party/cros_system_api/dbus/service_constants.h" |
| 22 | 21 |
| 23 namespace chromeos { | 22 namespace chromeos { |
| 24 | 23 |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 | 191 |
| 193 LorgnetteManagerClient::~LorgnetteManagerClient() { | 192 LorgnetteManagerClient::~LorgnetteManagerClient() { |
| 194 } | 193 } |
| 195 | 194 |
| 196 // static | 195 // static |
| 197 LorgnetteManagerClient* LorgnetteManagerClient::Create() { | 196 LorgnetteManagerClient* LorgnetteManagerClient::Create() { |
| 198 return new LorgnetteManagerClientImpl(); | 197 return new LorgnetteManagerClientImpl(); |
| 199 } | 198 } |
| 200 | 199 |
| 201 } // namespace chromeos | 200 } // namespace chromeos |
| OLD | NEW |