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 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 | 491 |
492 // The file to write our decoded message catalogs to, relative to the | 492 // The file to write our decoded message catalogs to, relative to the |
493 // extension_path. | 493 // extension_path. |
494 const char* kDecodedMessageCatalogsFilename = "DECODED_MESSAGE_CATALOGS"; | 494 const char* kDecodedMessageCatalogsFilename = "DECODED_MESSAGE_CATALOGS"; |
495 } | 495 } |
496 | 496 |
497 namespace extension_misc { | 497 namespace extension_misc { |
498 const char* kBookmarkManagerId = "eemcgdkfndhakfknompkggombfjjjeno"; | 498 const char* kBookmarkManagerId = "eemcgdkfndhakfknompkggombfjjjeno"; |
499 const char* kWebStoreAppId = "ahfgeienlihckogmohjhadlkjgocpleb"; | 499 const char* kWebStoreAppId = "ahfgeienlihckogmohjhadlkjgocpleb"; |
500 const char* kCloudPrintAppId = "mfehgcgbbipciphmccgaenjidiccnmng"; | 500 const char* kCloudPrintAppId = "mfehgcgbbipciphmccgaenjidiccnmng"; |
| 501 const char* kUnsetIndex = "-1"; |
501 const char* kAppsPromoHistogram = "Extensions.AppsPromo"; | 502 const char* kAppsPromoHistogram = "Extensions.AppsPromo"; |
502 const char* kAppLaunchHistogram = "Extensions.AppLaunch"; | 503 const char* kAppLaunchHistogram = "Extensions.AppLaunch"; |
503 #if defined(OS_CHROMEOS) | 504 #if defined(OS_CHROMEOS) |
504 const char* kAccessExtensionPath = | 505 const char* kAccessExtensionPath = |
505 "/usr/share/chromeos-assets/accessibility/extensions"; | 506 "/usr/share/chromeos-assets/accessibility/extensions"; |
506 const char* kChromeVoxDirectoryName = "access_chromevox"; | 507 const char* kChromeVoxDirectoryName = "access_chromevox"; |
507 #endif | 508 #endif |
508 | 509 |
509 } | 510 } |
OLD | NEW |