| Index: remoting/host/branding.cc
|
| diff --git a/remoting/host/branding.cc b/remoting/host/branding.cc
|
| index 840e9822c88a9fa5c0c0f1015b8fabd862a8db4c..fe9547982419dc8fd5872f324668b315e87865c1 100644
|
| --- a/remoting/host/branding.cc
|
| +++ b/remoting/host/branding.cc
|
| @@ -4,7 +4,7 @@
|
|
|
| #include "remoting/host/branding.h"
|
|
|
| -#include "base/file_util.h"
|
| +#include "base/base_paths.h"
|
| #include "base/path_service.h"
|
|
|
| namespace {
|
| @@ -46,7 +46,7 @@ base::FilePath GetConfigDir() {
|
| #elif defined(OS_MACOSX)
|
| PathService::Get(base::DIR_APP_DATA, &app_data_dir);
|
| #else
|
| - app_data_dir = base::GetHomeDir();
|
| + PathService::Get(base::DIR_HOME, &app_data_dir);
|
| #endif
|
|
|
| return app_data_dir.Append(kConfigDir);
|
|
|