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/location.h" | 11 #include "base/location.h" |
| 12 #include "base/macros.h" |
12 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
13 #include "base/task_runner_util.h" | 14 #include "base/task_runner_util.h" |
14 #include "base/threading/worker_pool.h" | 15 #include "base/threading/worker_pool.h" |
15 #include "chromeos/dbus/pipe_reader.h" | 16 #include "chromeos/dbus/pipe_reader.h" |
16 #include "dbus/bus.h" | 17 #include "dbus/bus.h" |
17 #include "dbus/message.h" | 18 #include "dbus/message.h" |
18 #include "dbus/object_path.h" | 19 #include "dbus/object_path.h" |
19 #include "dbus/object_proxy.h" | 20 #include "dbus/object_proxy.h" |
20 #include "net/base/file_stream.h" | 21 #include "net/base/file_stream.h" |
21 #include "third_party/cros_system_api/dbus/service_constants.h" | 22 #include "third_party/cros_system_api/dbus/service_constants.h" |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 | 256 |
256 LorgnetteManagerClient::~LorgnetteManagerClient() { | 257 LorgnetteManagerClient::~LorgnetteManagerClient() { |
257 } | 258 } |
258 | 259 |
259 // static | 260 // static |
260 LorgnetteManagerClient* LorgnetteManagerClient::Create() { | 261 LorgnetteManagerClient* LorgnetteManagerClient::Create() { |
261 return new LorgnetteManagerClientImpl(); | 262 return new LorgnetteManagerClientImpl(); |
262 } | 263 } |
263 | 264 |
264 } // namespace chromeos | 265 } // namespace chromeos |
OLD | NEW |