Commit 68442df5 authored by thakis@chromium.org's avatar thakis@chromium.org

gcapi/mac: Put master prefs in the right place

chrome/browser/master_prefs.mm reads the user master prefs file
from ~/Application Support/Google/Chrome, not ~/AS/Google. Found
by Mike Graboski!

BUG=128462

Review URL: https://chromiumcodereview.appspot.com/10836274

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151768 0039d316-1c4b-4281-b951-d872f2087c98
parent 3f0d3fa1
...@@ -31,7 +31,8 @@ NSString* const kUserKsadminPath = ...@@ -31,7 +31,8 @@ NSString* const kUserKsadminPath =
NSString* const kSystemMasterPrefsPath = NSString* const kSystemMasterPrefsPath =
@"/Library/Google/Google Chrome Master Preferences"; @"/Library/Google/Google Chrome Master Preferences";
NSString* const kUserMasterPrefsPath = NSString* const kUserMasterPrefsPath =
@"~~/Library/Application Support/Google/Google Chrome Master Preferences"; @"~~/Library/Application Support/Google/Chrome/"
"Google Chrome Master Preferences";
NSString* const kChannelKey = @"KSChannelID"; NSString* const kChannelKey = @"KSChannelID";
NSString* const kVersionKey = @"KSVersion"; NSString* const kVersionKey = @"KSVersion";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment