| 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_PROFILE_CLIENT_H_ | 5 #ifndef CHROMEOS_DBUS_FLIMFLAM_PROFILE_CLIENT_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_DBUS_FLIMFLAM_PROFILE_CLIENT_H_ | 6 #define CHROMEOS_DBUS_FLIMFLAM_PROFILE_CLIENT_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 "chrome/browser/chromeos/dbus/dbus_client_implementation_type.h" | 12 #include "chromeos/chromeos_export.h" |
| 13 #include "chrome/browser/chromeos/dbus/flimflam_client_helper.h" | 13 #include "chromeos/dbus/dbus_client_implementation_type.h" |
| 14 #include "chromeos/dbus/flimflam_client_helper.h" |
| 14 | 15 |
| 15 namespace base { | 16 namespace base { |
| 16 | 17 |
| 17 class Value; | 18 class Value; |
| 18 class DictionaryValue; | 19 class DictionaryValue; |
| 19 | 20 |
| 20 } // namespace base | 21 } // namespace base |
| 21 | 22 |
| 22 namespace dbus { | 23 namespace dbus { |
| 23 | 24 |
| 24 class Bus; | 25 class Bus; |
| 25 class ObjectPath; | 26 class ObjectPath; |
| 26 | 27 |
| 27 } // namespace dbus | 28 } // namespace dbus |
| 28 | 29 |
| 29 namespace chromeos { | 30 namespace chromeos { |
| 30 | 31 |
| 31 // FlimflamProfileClient is used to communicate with the Flimflam Profile | 32 // FlimflamProfileClient is used to communicate with the Flimflam Profile |
| 32 // service. All methods should be called from the origin thread which | 33 // service. All methods should be called from the origin thread which |
| 33 // initializes the DBusThreadManager instance. | 34 // initializes the DBusThreadManager instance. |
| 34 class FlimflamProfileClient { | 35 class CHROMEOS_EXPORT FlimflamProfileClient { |
| 35 public: | 36 public: |
| 36 typedef FlimflamClientHelper::PropertyChangedHandler PropertyChangedHandler; | 37 typedef FlimflamClientHelper::PropertyChangedHandler PropertyChangedHandler; |
| 37 typedef FlimflamClientHelper::VoidCallback VoidCallback; | 38 typedef FlimflamClientHelper::VoidCallback VoidCallback; |
| 38 typedef FlimflamClientHelper::DictionaryValueCallback DictionaryValueCallback; | 39 typedef FlimflamClientHelper::DictionaryValueCallback DictionaryValueCallback; |
| 39 | 40 |
| 40 virtual ~FlimflamProfileClient(); | 41 virtual ~FlimflamProfileClient(); |
| 41 | 42 |
| 42 // Factory function, creates a new instance which is owned by the caller. | 43 // Factory function, creates a new instance which is owned by the caller. |
| 43 // For normal usage, access the singleton via DBusThreadManager::Get(). | 44 // For normal usage, access the singleton via DBusThreadManager::Get(). |
| 44 static FlimflamProfileClient* Create(DBusClientImplementationType type, | 45 static FlimflamProfileClient* Create(DBusClientImplementationType type, |
| (...skipping 23 matching lines...) Expand all Loading... |
| 68 protected: | 69 protected: |
| 69 // Create() should be used instead. | 70 // Create() should be used instead. |
| 70 FlimflamProfileClient(); | 71 FlimflamProfileClient(); |
| 71 | 72 |
| 72 private: | 73 private: |
| 73 DISALLOW_COPY_AND_ASSIGN(FlimflamProfileClient); | 74 DISALLOW_COPY_AND_ASSIGN(FlimflamProfileClient); |
| 74 }; | 75 }; |
| 75 | 76 |
| 76 } // namespace chromeos | 77 } // namespace chromeos |
| 77 | 78 |
| 78 #endif // CHROME_BROWSER_CHROMEOS_DBUS_FLIMFLAM_PROFILE_CLIENT_H_ | 79 #endif // CHROMEOS_DBUS_FLIMFLAM_PROFILE_CLIENT_H_ |
| OLD | NEW |