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 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 // User clicked the webstore icon from the app launcher's search view. | 245 // User clicked the webstore icon from the app launcher's search view. |
246 APP_LAUNCH_APP_LIST_SEARCH_WEBSTORE, | 246 APP_LAUNCH_APP_LIST_SEARCH_WEBSTORE, |
247 | 247 |
248 APP_LAUNCH_BUCKET_BOUNDARY, | 248 APP_LAUNCH_BUCKET_BOUNDARY, |
249 APP_LAUNCH_BUCKET_INVALID | 249 APP_LAUNCH_BUCKET_INVALID |
250 }; | 250 }; |
251 | 251 |
252 #if defined(OS_CHROMEOS) | 252 #if defined(OS_CHROMEOS) |
253 // Path to preinstalled ChromeVox screen reader extension. | 253 // Path to preinstalled ChromeVox screen reader extension. |
254 extern const char kChromeVoxExtensionPath[]; | 254 extern const char kChromeVoxExtensionPath[]; |
| 255 // The extension id of the ChromeVox extension. |
| 256 extern const char kChromeVoxExtensionId[]; |
255 // Path to preinstalled Connectivity Diagnostics extension. | 257 // Path to preinstalled Connectivity Diagnostics extension. |
256 extern const char kConnectivityDiagnosticsPath[]; | 258 extern const char kConnectivityDiagnosticsPath[]; |
257 extern const char kConnectivityDiagnosticsLauncherPath[]; | 259 extern const char kConnectivityDiagnosticsLauncherPath[]; |
258 // Path to preinstalled speech synthesis extension. | 260 // Path to preinstalled speech synthesis extension. |
259 extern const char kSpeechSynthesisExtensionPath[]; | 261 extern const char kSpeechSynthesisExtensionPath[]; |
260 // The extension id of the speech synthesis extension. | 262 // The extension id of the speech synthesis extension. |
261 extern const char kSpeechSynthesisExtensionId[]; | 263 extern const char kSpeechSynthesisExtensionId[]; |
262 // The extension id of the wallpaper manager application. | 264 // The extension id of the wallpaper manager application. |
263 extern const char kWallpaperManagerId[]; | 265 extern const char kWallpaperManagerId[]; |
264 #endif | 266 #endif |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 // List of sizes for extension icons that can be defined in the manifest. | 317 // List of sizes for extension icons that can be defined in the manifest. |
316 extern const int kExtensionActionIconSizes[]; | 318 extern const int kExtensionActionIconSizes[]; |
317 extern const size_t kNumExtensionActionIconSizes; | 319 extern const size_t kNumExtensionActionIconSizes; |
318 | 320 |
319 // List of sizes for extension icons that can be defined in the manifest. | 321 // List of sizes for extension icons that can be defined in the manifest. |
320 extern const int kScriptBadgeIconSizes[]; | 322 extern const int kScriptBadgeIconSizes[]; |
321 extern const size_t kNumScriptBadgeIconSizes; | 323 extern const size_t kNumScriptBadgeIconSizes; |
322 } // namespace extension_misc | 324 } // namespace extension_misc |
323 | 325 |
324 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 326 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |