| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "dbus/object_manager.h" | 5 #include "dbus/object_manager.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include "base/bind.h" | 9 #include "base/bind.h" |
| 8 #include "base/location.h" | 10 #include "base/location.h" |
| 9 #include "base/logging.h" | 11 #include "base/logging.h" |
| 10 #include "base/metrics/histogram.h" | 12 #include "base/metrics/histogram.h" |
| 11 #include "base/strings/stringprintf.h" | 13 #include "base/strings/stringprintf.h" |
| 12 #include "base/task_runner_util.h" | 14 #include "base/task_runner_util.h" |
| 13 #include "dbus/bus.h" | 15 #include "dbus/bus.h" |
| 14 #include "dbus/dbus_statistics.h" | 16 #include "dbus/dbus_statistics.h" |
| 15 #include "dbus/message.h" | 17 #include "dbus/message.h" |
| 16 #include "dbus/object_proxy.h" | 18 #include "dbus/object_proxy.h" |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 RemoveInterface(object_path, *iiter); | 527 RemoveInterface(object_path, *iiter); |
| 526 } | 528 } |
| 527 | 529 |
| 528 } | 530 } |
| 529 | 531 |
| 530 if (!new_owner.empty()) | 532 if (!new_owner.empty()) |
| 531 GetManagedObjects(); | 533 GetManagedObjects(); |
| 532 } | 534 } |
| 533 | 535 |
| 534 } // namespace dbus | 536 } // namespace dbus |
| OLD | NEW |