| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 | 6 |
| 7 namespace extension_manifest_keys { | 7 namespace extension_manifest_keys { |
| 8 | 8 |
| 9 const char* kAllFrames = "all_frames"; | 9 const char* kAllFrames = "all_frames"; |
| 10 const char* kAltKey = "altKey"; | 10 const char* kAltKey = "altKey"; |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 const char* kDecodedImagesFilename = "DECODED_IMAGES"; | 400 const char* kDecodedImagesFilename = "DECODED_IMAGES"; |
| 401 | 401 |
| 402 // The file to write our decoded message catalogs to, relative to the | 402 // The file to write our decoded message catalogs to, relative to the |
| 403 // extension_path. | 403 // extension_path. |
| 404 const char* kDecodedMessageCatalogsFilename = "DECODED_MESSAGE_CATALOGS"; | 404 const char* kDecodedMessageCatalogsFilename = "DECODED_MESSAGE_CATALOGS"; |
| 405 } | 405 } |
| 406 | 406 |
| 407 namespace extension_misc { | 407 namespace extension_misc { |
| 408 const char* kBookmarkManagerId = "eemcgdkfndhakfknompkggombfjjjeno"; | 408 const char* kBookmarkManagerId = "eemcgdkfndhakfknompkggombfjjjeno"; |
| 409 const char* kWebStoreAppId = "ahfgeienlihckogmohjhadlkjgocpleb"; | 409 const char* kWebStoreAppId = "ahfgeienlihckogmohjhadlkjgocpleb"; |
| 410 const char* kCloudPrintAppId = "mfehgcgbbipciphmccgaenjidiccnmng"; |
| 410 const char* kAppsPromoHistogram = "Extensions.AppsPromo"; | 411 const char* kAppsPromoHistogram = "Extensions.AppsPromo"; |
| 411 const char* kAppLaunchHistogram = "Extensions.AppLaunch"; | 412 const char* kAppLaunchHistogram = "Extensions.AppLaunch"; |
| 412 #if defined(OS_CHROMEOS) | 413 #if defined(OS_CHROMEOS) |
| 413 const char* kAccessExtensionPath = | 414 const char* kAccessExtensionPath = |
| 414 "/usr/share/chromeos-assets/accessibility/extensions"; | 415 "/usr/share/chromeos-assets/accessibility/extensions"; |
| 415 const char* kChromeVoxDirectoryName = "access_chromevox"; | 416 const char* kChromeVoxDirectoryName = "access_chromevox"; |
| 416 #endif | 417 #endif |
| 417 } | 418 } |
| OLD | NEW |