| Index: components/sync/base/sync_prefs.cc
|
| diff --git a/components/sync/base/sync_prefs.cc b/components/sync/base/sync_prefs.cc
|
| index 25b54cf3fcb09991fe15503e52edb090d6c0607c..025f4e26e29adaa9f08beb48eefa856e6fa7a007 100644
|
| --- a/components/sync/base/sync_prefs.cc
|
| +++ b/components/sync/base/sync_prefs.cc
|
| @@ -564,8 +564,11 @@ base::FilePath SyncPrefs::GetLocalSyncBackendDir() const {
|
| // this code and move the logic in its right place. See crbug/657810.
|
| CHECK(
|
| base::PathService::Get(base::DIR_APP_DATA, &local_sync_backend_folder));
|
| - local_sync_backend_folder =
|
| - local_sync_backend_folder.Append(FILE_PATH_LITERAL("Chrome/User Data"));
|
| +
|
| + // TODO(pastarmovj): Quick and dirty solution for stage 1 of crbug/694464
|
| + // for merging back into Chrome 57.
|
| + local_sync_backend_folder = local_sync_backend_folder.Append(
|
| + FILE_PATH_LITERAL("Google/Chrome/User Data"));
|
| }
|
| #endif // defined(OS_WIN)
|
| return local_sync_backend_folder;
|
|
|