| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/common/extensions/extension_constants.h" | 5 #include "chrome/common/extensions/extension_constants.h" |
| 6 #include "chrome/common/extensions/extension_manifest_constants.h" | 6 #include "chrome/common/extensions/extension_manifest_constants.h" |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 const char kCitrixReceiverAppId[] = "haiffjcadagjlijoggckpgfnoeiflnem"; | 118 const char kCitrixReceiverAppId[] = "haiffjcadagjlijoggckpgfnoeiflnem"; |
| 119 const char kCitrixReceiverAppBetaId[] = "gnedhmakppccajfpfiihfcdlnpgomkcf"; | 119 const char kCitrixReceiverAppBetaId[] = "gnedhmakppccajfpfiihfcdlnpgomkcf"; |
| 120 const char kCitrixReceiverAppDevId[] = "fjcibdnjlbfnbfdjneajpipnlcppleek"; | 120 const char kCitrixReceiverAppDevId[] = "fjcibdnjlbfnbfdjneajpipnlcppleek"; |
| 121 const char kEnterpriseWebStoreAppId[] = "afchcafgojfnemjkcbhfekplkmjaldaa"; | 121 const char kEnterpriseWebStoreAppId[] = "afchcafgojfnemjkcbhfekplkmjaldaa"; |
| 122 const char kHTermAppId[] = "pnhechapfaindjhompbnflcldabbghjo"; | 122 const char kHTermAppId[] = "pnhechapfaindjhompbnflcldabbghjo"; |
| 123 const char kHTermDevAppId[] = "okddffdblfhhnmhodogpojmfkjmhinfp"; | 123 const char kHTermDevAppId[] = "okddffdblfhhnmhodogpojmfkjmhinfp"; |
| 124 const char kCroshBuiltinAppId[] = "nkoccljplnhpfnfiajclkommnmllphnl"; | 124 const char kCroshBuiltinAppId[] = "nkoccljplnhpfnfiajclkommnmllphnl"; |
| 125 const char kWebStoreAppId[] = "ahfgeienlihckogmohjhadlkjgocpleb"; | 125 const char kWebStoreAppId[] = "ahfgeienlihckogmohjhadlkjgocpleb"; |
| 126 const char kCloudPrintAppId[] = "mfehgcgbbipciphmccgaenjidiccnmng"; | 126 const char kCloudPrintAppId[] = "mfehgcgbbipciphmccgaenjidiccnmng"; |
| 127 const char kChromeAppId[] = "mgndgikekgjfcpckkfioiadnlibdjbkf"; | 127 const char kChromeAppId[] = "mgndgikekgjfcpckkfioiadnlibdjbkf"; |
| 128 const char kAppsPromoHistogram[] = "Extensions.AppsPromo"; | |
| 129 const char kAppLaunchHistogram[] = "Extensions.AppLaunch"; | 128 const char kAppLaunchHistogram[] = "Extensions.AppLaunch"; |
| 130 #if defined(OS_CHROMEOS) | 129 #if defined(OS_CHROMEOS) |
| 131 const char kAccessExtensionPath[] = | 130 const char kAccessExtensionPath[] = |
| 132 "/usr/share/chromeos-assets/accessibility/extensions"; | 131 "/usr/share/chromeos-assets/accessibility/extensions"; |
| 133 const char kChromeVoxDirectoryName[] = "access_chromevox"; | 132 const char kChromeVoxDirectoryName[] = "access_chromevox"; |
| 134 #endif | 133 #endif |
| 135 | 134 |
| 136 const char kAppStateNotInstalled[] = "not_installed"; | 135 const char kAppStateNotInstalled[] = "not_installed"; |
| 137 const char kAppStateInstalled[] = "installed"; | 136 const char kAppStateInstalled[] = "installed"; |
| 138 const char kAppStateDisabled[] = "disabled"; | 137 const char kAppStateDisabled[] = "disabled"; |
| 139 const char kAppStateRunning[] = "running"; | 138 const char kAppStateRunning[] = "running"; |
| 140 const char kAppStateCannotRun[] = "cannot_run"; | 139 const char kAppStateCannotRun[] = "cannot_run"; |
| 141 const char kAppStateReadyToRun[] = "ready_to_run"; | 140 const char kAppStateReadyToRun[] = "ready_to_run"; |
| 142 | 141 |
| 143 const char kMediaFileSystemPathPart[] = "_"; | 142 const char kMediaFileSystemPathPart[] = "_"; |
| 144 | 143 |
| 145 const char kAppNotificationsIncognitoError[] = | 144 const char kAppNotificationsIncognitoError[] = |
| 146 "This API is not accessible by 'split' mode " | 145 "This API is not accessible by 'split' mode " |
| 147 "extensions in incognito windows."; | 146 "extensions in incognito windows."; |
| 148 | 147 |
| 149 } // namespace extension_misc | 148 } // namespace extension_misc |
| OLD | NEW |