| 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 #include "chrome/common/extensions/extension_manifest_constants.h" | 6 #include "chrome/common/extensions/extension_manifest_constants.h" |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 const char kHTermDevAppId[] = "okddffdblfhhnmhodogpojmfkjmhinfp"; | 91 const char kHTermDevAppId[] = "okddffdblfhhnmhodogpojmfkjmhinfp"; |
| 92 const char kWebStoreAppId[] = "ahfgeienlihckogmohjhadlkjgocpleb"; | 92 const char kWebStoreAppId[] = "ahfgeienlihckogmohjhadlkjgocpleb"; |
| 93 const char kCloudPrintAppId[] = "mfehgcgbbipciphmccgaenjidiccnmng"; | 93 const char kCloudPrintAppId[] = "mfehgcgbbipciphmccgaenjidiccnmng"; |
| 94 const char kAppsPromoHistogram[] = "Extensions.AppsPromo"; | 94 const char kAppsPromoHistogram[] = "Extensions.AppsPromo"; |
| 95 const char kAppLaunchHistogram[] = "Extensions.AppLaunch"; | 95 const char kAppLaunchHistogram[] = "Extensions.AppLaunch"; |
| 96 #if defined(OS_CHROMEOS) | 96 #if defined(OS_CHROMEOS) |
| 97 const char kAccessExtensionPath[] = | 97 const char kAccessExtensionPath[] = |
| 98 "/usr/share/chromeos-assets/accessibility/extensions"; | 98 "/usr/share/chromeos-assets/accessibility/extensions"; |
| 99 const char kChromeVoxDirectoryName[] = "access_chromevox"; | 99 const char kChromeVoxDirectoryName[] = "access_chromevox"; |
| 100 #endif | 100 #endif |
| 101 | 101 const char kAppNotificationsIncognitoError[] = |
| 102 "This API is not accessible by 'split' mode " |
| 103 "extensions in incognito windows."; |
| 102 } | 104 } |
| OLD | NEW |