| 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..25f48b6ce0a221669d864ca3c1190ab73eaf0a8a 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
|
| +std::string ShillProfileClient::GetSharedProfilePath() {
|
| + return std::string(kSharedProfilePath);
|
| +}
|
| +
|
| } // namespace chromeos
|
|
|