| Index: chrome/common/mac/app_mode_common.h
|
| diff --git a/chrome/common/mac/app_mode_common.h b/chrome/common/mac/app_mode_common.h
|
| index 930d22d946b2e80881d1439455723c4da35bebdc..b8bc53980682819ddf378b4a4b4cade6e5e299f6 100644
|
| --- a/chrome/common/mac/app_mode_common.h
|
| +++ b/chrome/common/mac/app_mode_common.h
|
| @@ -20,10 +20,6 @@ namespace app_mode {
|
| // app mode launcher bundle's Info.plist.
|
| extern NSString* const kBrowserBundleIDKey;
|
|
|
| -// The key under which to record the path to the (user-visible) application
|
| -// bundle; this key is recorded under the ID given by |kAppPrefsID|.
|
| -extern NSString* const kLastRunAppBundlePathPrefsKey;
|
| -
|
| // Key for the shortcut ID.
|
| extern NSString* const kCrAppModeShortcutIDKey;
|
|
|
| @@ -42,6 +38,14 @@ extern NSString* const kCrAppModeUserDataDirKey;
|
| // Key for the app's extension path.
|
| extern NSString* const kCrAppModeExtensionPathKey;
|
|
|
| +// When the Chrome browser is run, it stores it's location in the defaults
|
| +// system using this key.
|
| +extern NSString* const kLastRunAppBundlePathPrefsKey;
|
| +
|
| +// Placeholder used in the Info.plist, meant to be replaced by the extension
|
| +// shortcut ID.
|
| +extern NSString* const kShortcutIdPlaceholder;
|
| +
|
| // Current major/minor version numbers of |ChromeAppModeInfo| (defined below).
|
| const unsigned kCurrentChromeAppModeInfoMajorVersion = 1;
|
| const unsigned kCurrentChromeAppModeInfoMinorVersion = 0;
|
| @@ -68,9 +72,12 @@ struct ChromeAppModeInfo {
|
| // Versioned path to the browser which is being loaded.
|
| FilePath chrome_versioned_path; // Required: v1.0
|
|
|
| + // Path to Chrome app bundle.
|
| + FilePath chrome_outer_bundle_path; // Required: v1.0
|
| +
|
| // Information about the App Mode shortcut:
|
|
|
| - // Path to the App Mode Loader application bundle originally run.
|
| + // Path to the App Mode Loader application bundle that launched the process.
|
| FilePath app_mode_bundle_path; // Optional: v1.0
|
|
|
| // Short ID string, preferably derived from |app_mode_short_name|. Should be
|
|
|