| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 const char kGeneratedBackgroundPageFilename[] = | 93 const char kGeneratedBackgroundPageFilename[] = |
| 94 "_generated_background_page.html"; | 94 "_generated_background_page.html"; |
| 95 } | 95 } |
| 96 | 96 |
| 97 // These must match the values expected by the chrome.management extension API. | 97 // These must match the values expected by the chrome.management extension API. |
| 98 namespace extension_info_keys { | 98 namespace extension_info_keys { |
| 99 const char kDescriptionKey[] = "description"; | 99 const char kDescriptionKey[] = "description"; |
| 100 const char kEnabledKey[] = "enabled"; | 100 const char kEnabledKey[] = "enabled"; |
| 101 const char kHomepageUrlKey[] = "homepageUrl"; | 101 const char kHomepageUrlKey[] = "homepageUrl"; |
| 102 const char kIdKey[] = "id"; | 102 const char kIdKey[] = "id"; |
| 103 const char kMayDisableKey[] = "mayDisable"; | |
| 104 const char kNameKey[] = "name"; | 103 const char kNameKey[] = "name"; |
| 105 const char kOfflineEnabledKey[] = "offlineEnabled"; | 104 const char kOfflineEnabledKey[] = "offlineEnabled"; |
| 106 const char kOptionsUrlKey[] = "optionsUrl"; | 105 const char kOptionsUrlKey[] = "optionsUrl"; |
| 107 const char kVersionKey[] = "version"; | 106 const char kVersionKey[] = "version"; |
| 108 } | 107 } |
| 109 | 108 |
| 110 namespace extension_misc { | 109 namespace extension_misc { |
| 111 const char kBookmarkManagerId[] = "eemcgdkfndhakfknompkggombfjjjeno"; | 110 const char kBookmarkManagerId[] = "eemcgdkfndhakfknompkggombfjjjeno"; |
| 112 const char kCitrixReceiverAppId[] = "haiffjcadagjlijoggckpgfnoeiflnem"; | 111 const char kCitrixReceiverAppId[] = "haiffjcadagjlijoggckpgfnoeiflnem"; |
| 113 const char kCitrixReceiverAppBetaId[] = "gnedhmakppccajfpfiihfcdlnpgomkcf"; | 112 const char kCitrixReceiverAppBetaId[] = "gnedhmakppccajfpfiihfcdlnpgomkcf"; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 130 const char kAppStateInstalled[] = "installed"; | 129 const char kAppStateInstalled[] = "installed"; |
| 131 const char kAppStateDisabled[] = "disabled"; | 130 const char kAppStateDisabled[] = "disabled"; |
| 132 const char kAppStateRunning[] = "running"; | 131 const char kAppStateRunning[] = "running"; |
| 133 const char kAppStateCannotRun[] = "cannot_run"; | 132 const char kAppStateCannotRun[] = "cannot_run"; |
| 134 const char kAppStateReadyToRun[] = "ready_to_run"; | 133 const char kAppStateReadyToRun[] = "ready_to_run"; |
| 135 | 134 |
| 136 const char kAppNotificationsIncognitoError[] = | 135 const char kAppNotificationsIncognitoError[] = |
| 137 "This API is not accessible by 'split' mode " | 136 "This API is not accessible by 'split' mode " |
| 138 "extensions in incognito windows."; | 137 "extensions in incognito windows."; |
| 139 } | 138 } |
| OLD | NEW |