Chromium Code Reviews| 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 "oickdpebdnfbgkcaoklfcdhjniefkcji"; | 118 "oickdpebdnfbgkcaoklfcdhjniefkcji"; |
| 119 const char kWebStoreAppId[] = "ahfgeienlihckogmohjhadlkjgocpleb"; | 119 const char kWebStoreAppId[] = "ahfgeienlihckogmohjhadlkjgocpleb"; |
| 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 kChromeVoxExtensionId[] = | |
| 129 "mndnfokpggljbaajbnioimlmbfngpief"; | |
|
dmazzoni
2013/09/05 06:13:55
We should move the constant currently found in ext
| |
| 128 const char kConnectivityDiagnosticsPath[] = | 130 const char kConnectivityDiagnosticsPath[] = |
| 129 "/usr/share/chromeos-assets/connectivity_diagnostics"; | 131 "/usr/share/chromeos-assets/connectivity_diagnostics"; |
| 130 const char kConnectivityDiagnosticsLauncherPath[] = | 132 const char kConnectivityDiagnosticsLauncherPath[] = |
| 131 "/usr/share/chromeos-assets/connectivity_diagnostics_launcher"; | 133 "/usr/share/chromeos-assets/connectivity_diagnostics_launcher"; |
| 132 const char kSpeechSynthesisExtensionPath[] = | 134 const char kSpeechSynthesisExtensionPath[] = |
| 133 "/usr/share/chromeos-assets/speech_synthesis/patts"; | 135 "/usr/share/chromeos-assets/speech_synthesis/patts"; |
| 134 const char kSpeechSynthesisExtensionId[] = | 136 const char kSpeechSynthesisExtensionId[] = |
| 135 "gjjabgpgjpampikjhjpfhneeoapjbjaf"; | 137 "gjjabgpgjpampikjhjpfhneeoapjbjaf"; |
| 136 const char kWallpaperManagerId[] = "obklkkbkpaoaejdabbfldmcfplpdgolj"; | 138 const char kWallpaperManagerId[] = "obklkkbkpaoaejdabbfldmcfplpdgolj"; |
| 137 #endif | 139 #endif |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 171 | 173 |
| 172 const int kScriptBadgeIconSizes[] = { | 174 const int kScriptBadgeIconSizes[] = { |
| 173 EXTENSION_ICON_BITTY, // 16 | 175 EXTENSION_ICON_BITTY, // 16 |
| 174 2 * EXTENSION_ICON_BITTY // 32 | 176 2 * EXTENSION_ICON_BITTY // 32 |
| 175 }; | 177 }; |
| 176 | 178 |
| 177 const size_t kNumScriptBadgeIconSizes = | 179 const size_t kNumScriptBadgeIconSizes = |
| 178 arraysize(kScriptBadgeIconSizes); | 180 arraysize(kScriptBadgeIconSizes); |
| 179 | 181 |
| 180 } // namespace extension_misc | 182 } // namespace extension_misc |
| OLD | NEW |