| 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 | 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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 // The file to write our decoded message catalogs to, relative to the | 503 // The file to write our decoded message catalogs to, relative to the |
| 504 // extension_path. | 504 // extension_path. |
| 505 const char kDecodedMessageCatalogsFilename[] = "DECODED_MESSAGE_CATALOGS"; | 505 const char kDecodedMessageCatalogsFilename[] = "DECODED_MESSAGE_CATALOGS"; |
| 506 | 506 |
| 507 const char kGeneratedBackgroundPageFilename[] = | 507 const char kGeneratedBackgroundPageFilename[] = |
| 508 "_generated_background_page.html"; | 508 "_generated_background_page.html"; |
| 509 } | 509 } |
| 510 | 510 |
| 511 namespace extension_misc { | 511 namespace extension_misc { |
| 512 const char kBookmarkManagerId[] = "eemcgdkfndhakfknompkggombfjjjeno"; | 512 const char kBookmarkManagerId[] = "eemcgdkfndhakfknompkggombfjjjeno"; |
| 513 const char kCitrixReceiverAppId[] = "haiffjcadagjlijoggckpgfnoeiflnem"; |
| 514 const char kCitrixReceiverAppBetaId[] = "gnedhmakppccajfpfiihfcdlnpgomkcf"; |
| 515 const char kCitrixReceiverAppDevId[] = "fjcibdnjlbfnbfdjneajpipnlcppleek"; |
| 516 const char kEnterpriseWebStoreAppId[] = "afchcafgojfnemjkcbhfekplkmjaldaa"; |
| 517 const char kHTermAppId[] = "pnhechapfaindjhompbnflcldabbghjo"; |
| 518 const char kHTermDevAppId[] = "okddffdblfhhnmhodogpojmfkjmhinfp"; |
| 513 const char kWebStoreAppId[] = "ahfgeienlihckogmohjhadlkjgocpleb"; | 519 const char kWebStoreAppId[] = "ahfgeienlihckogmohjhadlkjgocpleb"; |
| 514 const char kCloudPrintAppId[] = "mfehgcgbbipciphmccgaenjidiccnmng"; | 520 const char kCloudPrintAppId[] = "mfehgcgbbipciphmccgaenjidiccnmng"; |
| 515 const char kAppsPromoHistogram[] = "Extensions.AppsPromo"; | 521 const char kAppsPromoHistogram[] = "Extensions.AppsPromo"; |
| 516 const char kAppLaunchHistogram[] = "Extensions.AppLaunch"; | 522 const char kAppLaunchHistogram[] = "Extensions.AppLaunch"; |
| 517 #if defined(OS_CHROMEOS) | 523 #if defined(OS_CHROMEOS) |
| 518 const char kAccessExtensionPath[] = | 524 const char kAccessExtensionPath[] = |
| 519 "/usr/share/chromeos-assets/accessibility/extensions"; | 525 "/usr/share/chromeos-assets/accessibility/extensions"; |
| 520 const char kChromeVoxDirectoryName[] = "access_chromevox"; | 526 const char kChromeVoxDirectoryName[] = "access_chromevox"; |
| 521 #endif | 527 #endif |
| 522 | 528 |
| 523 } | 529 } |
| OLD | NEW |