| 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 // User clicked the chrome app icon from the app launcher's search view. | 242 // User clicked the chrome app icon from the app launcher's search view. |
| 243 APP_LAUNCH_APP_LIST_SEARCH_CHROME, | 243 APP_LAUNCH_APP_LIST_SEARCH_CHROME, |
| 244 | 244 |
| 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 // The extension id of the ChromeVox extension. |
| 253 extern const char kChromeVoxExtensionId[]; |
| 254 |
| 252 #if defined(OS_CHROMEOS) | 255 #if defined(OS_CHROMEOS) |
| 253 // Path to preinstalled ChromeVox screen reader extension. | 256 // Path to preinstalled ChromeVox screen reader extension. |
| 254 extern const char kChromeVoxExtensionPath[]; | 257 extern const char kChromeVoxExtensionPath[]; |
| 255 // Path to preinstalled Connectivity Diagnostics extension. | 258 // Path to preinstalled Connectivity Diagnostics extension. |
| 256 extern const char kConnectivityDiagnosticsPath[]; | 259 extern const char kConnectivityDiagnosticsPath[]; |
| 257 extern const char kConnectivityDiagnosticsLauncherPath[]; | 260 extern const char kConnectivityDiagnosticsLauncherPath[]; |
| 258 // Path to preinstalled speech synthesis extension. | 261 // Path to preinstalled speech synthesis extension. |
| 259 extern const char kSpeechSynthesisExtensionPath[]; | 262 extern const char kSpeechSynthesisExtensionPath[]; |
| 260 // The extension id of the speech synthesis extension. | 263 // The extension id of the speech synthesis extension. |
| 261 extern const char kSpeechSynthesisExtensionId[]; | 264 extern const char kSpeechSynthesisExtensionId[]; |
| (...skipping 53 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. | 318 // List of sizes for extension icons that can be defined in the manifest. |
| 316 extern const int kExtensionActionIconSizes[]; | 319 extern const int kExtensionActionIconSizes[]; |
| 317 extern const size_t kNumExtensionActionIconSizes; | 320 extern const size_t kNumExtensionActionIconSizes; |
| 318 | 321 |
| 319 // List of sizes for extension icons that can be defined in the manifest. | 322 // List of sizes for extension icons that can be defined in the manifest. |
| 320 extern const int kScriptBadgeIconSizes[]; | 323 extern const int kScriptBadgeIconSizes[]; |
| 321 extern const size_t kNumScriptBadgeIconSizes; | 324 extern const size_t kNumScriptBadgeIconSizes; |
| 322 } // namespace extension_misc | 325 } // namespace extension_misc |
| 323 | 326 |
| 324 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 327 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
| OLD | NEW |