| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CHROMEOS_DBUS_FAKE_DBUS_THREAD_MANAGER_H_ | 5 #ifndef CHROMEOS_DBUS_FAKE_DBUS_THREAD_MANAGER_H_ |
| 6 #define CHROMEOS_DBUS_FAKE_DBUS_THREAD_MANAGER_H_ | 6 #define CHROMEOS_DBUS_FAKE_DBUS_THREAD_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | |
| 9 | |
| 10 #include "base/logging.h" | 8 #include "base/logging.h" |
| 11 #include "base/observer_list.h" | 9 #include "base/observer_list.h" |
| 12 #include "chromeos/chromeos_export.h" | 10 #include "chromeos/chromeos_export.h" |
| 13 #include "chromeos/dbus/dbus_thread_manager.h" | 11 #include "chromeos/dbus/dbus_thread_manager.h" |
| 14 | 12 |
| 15 namespace dbus { | 13 namespace dbus { |
| 16 class Bus; | 14 class Bus; |
| 17 class ObjectPath; | 15 class ObjectPath; |
| 18 } // namespace dbus | 16 } // namespace dbus |
| 19 | 17 |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 scoped_ptr<UpdateEngineClient> update_engine_client_; | 164 scoped_ptr<UpdateEngineClient> update_engine_client_; |
| 167 | 165 |
| 168 scoped_ptr<PowerPolicyController> power_policy_controller_; | 166 scoped_ptr<PowerPolicyController> power_policy_controller_; |
| 169 | 167 |
| 170 DISALLOW_COPY_AND_ASSIGN(FakeDBusThreadManager); | 168 DISALLOW_COPY_AND_ASSIGN(FakeDBusThreadManager); |
| 171 }; | 169 }; |
| 172 | 170 |
| 173 } // namespace chromeos | 171 } // namespace chromeos |
| 174 | 172 |
| 175 #endif // CHROMEOS_DBUS_FAKE_DBUS_THREAD_MANAGER_H_ | 173 #endif // CHROMEOS_DBUS_FAKE_DBUS_THREAD_MANAGER_H_ |
| OLD | NEW |