Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Unified Diff: components/sync/base/sync_prefs.cc

Issue 2709693002: [sync] Fix roaming profile path for local sync database file. (Closed)
Patch Set: Remove wrong upstream patch dependency. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698