Index: chromeos/dbus/shill_profile_client.cc |
diff --git a/chromeos/dbus/shill_profile_client.cc b/chromeos/dbus/shill_profile_client.cc |
index 6fb0a1b595394fe2cddaf6b2d24b75871556c960..3a6d41105296284eada09a5f91a928174aa28764 100644 |
--- a/chromeos/dbus/shill_profile_client.cc |
+++ b/chromeos/dbus/shill_profile_client.cc |
@@ -20,6 +20,8 @@ namespace chromeos { |
namespace { |
+const char kSharedProfilePath[] = "/profile/default"; |
+ |
class ShillProfileClientImpl : public ShillProfileClient { |
public: |
ShillProfileClientImpl(); |
@@ -138,4 +140,9 @@ ShillProfileClient* ShillProfileClient::Create() { |
return new ShillProfileClientImpl(); |
} |
+// static |
+const char* ShillProfileClient::GetSharedProfilePath() { |
+ return &kSharedProfilePath[0]; |
+} |
+ |
} // namespace chromeos |