Revert 248827 "android: Migrate old content readback to use asyn..."
[chromium-blink-merge.git] / chrome / common / mac / app_mode_common.mm
blob317dec3b6331e32aa8ae332f02d4c4d9b74708f8
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/common/mac/app_mode_common.h"
7 namespace app_mode {
9 const char kAppShimSocketName[] = "App Shim Socket";
11 const char kAppListModeId[] = "app_list";
13 const char kLaunchedByChromeProcessId[] = "launched-by-chrome-process-id";
15 NSString* const kCFBundleDisplayNameKey = @"CFBundleDisplayName";
16 NSString* const kLSHasLocalizedDisplayNameKey = @"LSHasLocalizedDisplayName";
17 NSString* const kBrowserBundleIDKey = @"CrBundleIdentifier";
18 NSString* const kCrAppModeShortcutIDKey = @"CrAppModeShortcutID";
19 NSString* const kCrAppModeShortcutNameKey = @"CrAppModeShortcutName";
20 NSString* const kCrAppModeShortcutURLKey = @"CrAppModeShortcutURL";
21 NSString* const kCrAppModeUserDataDirKey = @"CrAppModeUserDataDir";
22 NSString* const kCrAppModeProfileDirKey = @"CrAppModeProfileDir";
23 NSString* const kCrAppModeProfileNameKey = @"CrAppModeProfileName";
25 NSString* const kLastRunAppBundlePathPrefsKey = @"LastRunAppBundlePath";
27 NSString* const kShortcutIdPlaceholder = @"APP_MODE_SHORTCUT_ID";
28 NSString* const kShortcutNamePlaceholder = @"APP_MODE_SHORTCUT_NAME";
29 NSString* const kShortcutURLPlaceholder = @"APP_MODE_SHORTCUT_URL";
30 NSString* const kShortcutBrowserBundleIDPlaceholder =
31                     @"APP_MODE_BROWSER_BUNDLE_ID";
33 ChromeAppModeInfo::ChromeAppModeInfo()
34     : major_version(0),
35       minor_version(0),
36       argc(0),
37       argv(0) {
40 ChromeAppModeInfo::~ChromeAppModeInfo() {
43 }  // namespace app_mode