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 DBUS_EXPORTED_OBJECT_H_ | 5 #ifndef DBUS_EXPORTED_OBJECT_H_ |
6 #define DBUS_EXPORTED_OBJECT_H_ | 6 #define DBUS_EXPORTED_OBJECT_H_ |
7 | 7 |
8 #include <dbus/dbus.h> | 8 #include <dbus/dbus.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <string> | 11 #include <string> |
12 #include <utility> | 12 #include <utility> |
13 | 13 |
14 #include "base/callback.h" | 14 #include "base/callback.h" |
15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
| 16 #include "base/memory/scoped_ptr.h" |
16 #include "base/synchronization/waitable_event.h" | 17 #include "base/synchronization/waitable_event.h" |
17 #include "base/threading/platform_thread.h" | 18 #include "base/threading/platform_thread.h" |
18 #include "base/time/time.h" | 19 #include "base/time/time.h" |
19 #include "dbus/dbus_export.h" | 20 #include "dbus/dbus_export.h" |
20 #include "dbus/object_path.h" | 21 #include "dbus/object_path.h" |
21 | 22 |
22 namespace dbus { | 23 namespace dbus { |
23 | 24 |
24 class Bus; | 25 class Bus; |
25 class MethodCall; | 26 class MethodCall; |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 | 173 |
173 // The method table where keys are absolute method names (i.e. interface | 174 // The method table where keys are absolute method names (i.e. interface |
174 // name + method name), and values are the corresponding callbacks. | 175 // name + method name), and values are the corresponding callbacks. |
175 typedef std::map<std::string, MethodCallCallback> MethodTable; | 176 typedef std::map<std::string, MethodCallCallback> MethodTable; |
176 MethodTable method_table_; | 177 MethodTable method_table_; |
177 }; | 178 }; |
178 | 179 |
179 } // namespace dbus | 180 } // namespace dbus |
180 | 181 |
181 #endif // DBUS_EXPORTED_OBJECT_H_ | 182 #endif // DBUS_EXPORTED_OBJECT_H_ |
OLD | NEW |