| Index: chrome/common/chrome_paths_win.cc
|
| diff --git a/chrome/common/chrome_paths_win.cc b/chrome/common/chrome_paths_win.cc
|
| index 21d9a35d11527ac235f688d7ffd7ae0297e6d0a9..c9afb7a2ea9a32fb005e3654842fe0bb811a33f9 100644
|
| --- a/chrome/common/chrome_paths_win.cc
|
| +++ b/chrome/common/chrome_paths_win.cc
|
| @@ -29,7 +29,7 @@ bool GetUserDataDirectoryForEnvironment(bool current, FilePath* result) {
|
| return false;
|
| BrowserDistribution* dist = BrowserDistribution::GetDistribution();
|
| *result = result->Append(dist->GetInstallSubDir());
|
| - if (base::win::GetMetroModule() ? current : !current)
|
| + if (base::win::IsMetroProcess() ? current : !current)
|
| *result = result->Append(kMetroChromeUserDataSubDir);
|
| *result = result->Append(chrome::kUserDataDirname);
|
| return true;
|
|
|