| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/leadership_daemon_manager_client.h" | 5 #include "chromeos/dbus/leadership_daemon_manager_client.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/callback.h" | |
| 9 #include "base/logging.h" | 8 #include "base/logging.h" |
| 10 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 11 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| 12 #include "base/observer_list.h" | 11 #include "base/observer_list.h" |
| 13 #include "dbus/bus.h" | 12 #include "dbus/bus.h" |
| 14 #include "dbus/message.h" | 13 #include "dbus/message.h" |
| 15 #include "dbus/object_manager.h" | 14 #include "dbus/object_manager.h" |
| 16 #include "dbus/object_proxy.h" | 15 #include "dbus/object_proxy.h" |
| 17 #include "dbus/values_util.h" | 16 #include "dbus/values_util.h" |
| 18 | 17 |
| (...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 | 363 |
| 365 LeadershipDaemonManagerClient::~LeadershipDaemonManagerClient() { | 364 LeadershipDaemonManagerClient::~LeadershipDaemonManagerClient() { |
| 366 } | 365 } |
| 367 | 366 |
| 368 // static | 367 // static |
| 369 LeadershipDaemonManagerClient* LeadershipDaemonManagerClient::Create() { | 368 LeadershipDaemonManagerClient* LeadershipDaemonManagerClient::Create() { |
| 370 return new LeadershipDaemonManagerClientImpl(); | 369 return new LeadershipDaemonManagerClientImpl(); |
| 371 } | 370 } |
| 372 | 371 |
| 373 } // namespace chromeos | 372 } // namespace chromeos |
| OLD | NEW |