| Index: chrome/browser/web_applications/web_app_mac.mm
|
| diff --git a/chrome/browser/web_applications/web_app_mac.mm b/chrome/browser/web_applications/web_app_mac.mm
|
| index 81bcc0ae4aad9d009a8d7550dce264f23c319c6d..0b6d19dfb9d48b06687760f46a8301619317b130 100644
|
| --- a/chrome/browser/web_applications/web_app_mac.mm
|
| +++ b/chrome/browser/web_applications/web_app_mac.mm
|
| @@ -172,9 +172,11 @@ bool WebAppShortcutCreator::UpdatePlist(const FilePath& app_path) const {
|
|
|
| // 2. Fill in other values.
|
| [plist setObject:GetBundleIdentifier(plist)
|
| - forKey:base::mac::CFToNSCast(kCFBundleIdentifierKey)];
|
| + forKey:base::mac::CFToNSCast(kCFBundleIdentifierKey)];
|
| [plist setObject:base::mac::FilePathToNSString(data_dir_)
|
| forKey:app_mode::kCrAppModeUserDataDirKey];
|
| + [plist setObject:base::mac::FilePathToNSString(info_.extension_path)
|
| + forKey:app_mode::kCrAppModeExtensionPathKey];
|
|
|
| return [plist writeToFile:plist_path atomically:YES];
|
| }
|
|
|