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 CHROME_BROWSER_CHROMEOS_DBUS_FLIMFLAM_CLIENT_HELPER_H_ | 5 #ifndef CHROMEOS_DBUS_FLIMFLAM_CLIENT_HELPER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_DBUS_FLIMFLAM_CLIENT_HELPER_H_ | 6 #define CHROMEOS_DBUS_FLIMFLAM_CLIENT_HELPER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "chrome/browser/chromeos/dbus/dbus_method_call_status.h" | 13 #include "chromeos/dbus/dbus_method_call_status.h" |
14 | 14 |
15 namespace base { | 15 namespace base { |
16 | 16 |
17 class Value; | 17 class Value; |
18 class DictionaryValue; | 18 class DictionaryValue; |
19 | 19 |
20 } // namespace base | 20 } // namespace base |
21 | 21 |
22 namespace dbus { | 22 namespace dbus { |
23 | 23 |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 | 84 |
85 base::WeakPtrFactory<FlimflamClientHelper> weak_ptr_factory_; | 85 base::WeakPtrFactory<FlimflamClientHelper> weak_ptr_factory_; |
86 dbus::ObjectProxy* proxy_; | 86 dbus::ObjectProxy* proxy_; |
87 PropertyChangedHandler property_changed_handler_; | 87 PropertyChangedHandler property_changed_handler_; |
88 | 88 |
89 DISALLOW_COPY_AND_ASSIGN(FlimflamClientHelper); | 89 DISALLOW_COPY_AND_ASSIGN(FlimflamClientHelper); |
90 }; | 90 }; |
91 | 91 |
92 } // namespace chromeos | 92 } // namespace chromeos |
93 | 93 |
94 #endif // CHROME_BROWSER_CHROMEOS_DBUS_FLIMFLAM_CLIENT_HELPER_H_ | 94 #endif // CHROMEOS_DBUS_FLIMFLAM_CLIENT_HELPER_H_ |
OLD | NEW |