| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 const char kYoutubeAppId[] = "blpcfgokakmgnkcojhhkbfbldkacnbeo"; | 120 const char kYoutubeAppId[] = "blpcfgokakmgnkcojhhkbfbldkacnbeo"; |
| 121 const char kInAppPaymentsSupportAppId[] = "nmmhkkegccagdldgiimedpiccmgmieda"; | 121 const char kInAppPaymentsSupportAppId[] = "nmmhkkegccagdldgiimedpiccmgmieda"; |
| 122 | 122 |
| 123 const char kAppLaunchHistogram[] = "Extensions.AppLaunch"; | 123 const char kAppLaunchHistogram[] = "Extensions.AppLaunch"; |
| 124 const char kPlatformAppLaunchHistogram[] = "Apps.AppLaunch"; | 124 const char kPlatformAppLaunchHistogram[] = "Apps.AppLaunch"; |
| 125 #if defined(OS_CHROMEOS) | 125 #if defined(OS_CHROMEOS) |
| 126 const char kChromeVoxExtensionPath[] = | 126 const char kChromeVoxExtensionPath[] = |
| 127 "/usr/share/chromeos-assets/accessibility/extensions/access_chromevox"; | 127 "/usr/share/chromeos-assets/accessibility/extensions/access_chromevox"; |
| 128 const char kConnectivityDiagnosticsPath[] = | 128 const char kConnectivityDiagnosticsPath[] = |
| 129 "/usr/share/chromeos-assets/connectivity_diagnostics"; | 129 "/usr/share/chromeos-assets/connectivity_diagnostics"; |
| 130 const char kConnectivityDiagnosticsLauncherPath[] = |
| 131 "/usr/share/chromeos-assets/connectivity_diagnostics_launcher"; |
| 130 const char kSpeechSynthesisExtensionPath[] = | 132 const char kSpeechSynthesisExtensionPath[] = |
| 131 "/usr/share/chromeos-assets/speech_synthesis/patts"; | 133 "/usr/share/chromeos-assets/speech_synthesis/patts"; |
| 132 const char kSpeechSynthesisExtensionId[] = | 134 const char kSpeechSynthesisExtensionId[] = |
| 133 "gjjabgpgjpampikjhjpfhneeoapjbjaf"; | 135 "gjjabgpgjpampikjhjpfhneeoapjbjaf"; |
| 134 const char kWallpaperManagerId[] = "obklkkbkpaoaejdabbfldmcfplpdgolj"; | 136 const char kWallpaperManagerId[] = "obklkkbkpaoaejdabbfldmcfplpdgolj"; |
| 135 #endif | 137 #endif |
| 136 | 138 |
| 137 const char kAppStateNotInstalled[] = "not_installed"; | 139 const char kAppStateNotInstalled[] = "not_installed"; |
| 138 const char kAppStateInstalled[] = "installed"; | 140 const char kAppStateInstalled[] = "installed"; |
| 139 const char kAppStateDisabled[] = "disabled"; | 141 const char kAppStateDisabled[] = "disabled"; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 169 | 171 |
| 170 const int kScriptBadgeIconSizes[] = { | 172 const int kScriptBadgeIconSizes[] = { |
| 171 EXTENSION_ICON_BITTY, // 16 | 173 EXTENSION_ICON_BITTY, // 16 |
| 172 2 * EXTENSION_ICON_BITTY // 32 | 174 2 * EXTENSION_ICON_BITTY // 32 |
| 173 }; | 175 }; |
| 174 | 176 |
| 175 const size_t kNumScriptBadgeIconSizes = | 177 const size_t kNumScriptBadgeIconSizes = |
| 176 arraysize(kScriptBadgeIconSizes); | 178 arraysize(kScriptBadgeIconSizes); |
| 177 | 179 |
| 178 } // namespace extension_misc | 180 } // namespace extension_misc |
| OLD | NEW |