OLD | NEW |
---|---|
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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* kApp = "app"; | 10 const char* kApp = "app"; |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
310 | 310 |
311 // The file to write our decoded message catalogs to, relative to the | 311 // The file to write our decoded message catalogs to, relative to the |
312 // extension_path. | 312 // extension_path. |
313 const char* kDecodedMessageCatalogsFilename = "DECODED_MESSAGE_CATALOGS"; | 313 const char* kDecodedMessageCatalogsFilename = "DECODED_MESSAGE_CATALOGS"; |
314 } | 314 } |
315 | 315 |
316 namespace extension_misc { | 316 namespace extension_misc { |
317 const char* kBookmarkManagerId = "eemcgdkfndhakfknompkggombfjjjeno"; | 317 const char* kBookmarkManagerId = "eemcgdkfndhakfknompkggombfjjjeno"; |
318 const char* kWebStoreAppId = "ahfgeienlihckogmohjhadlkjgocpleb"; | 318 const char* kWebStoreAppId = "ahfgeienlihckogmohjhadlkjgocpleb"; |
319 const char* kAppsPromoHistogram = "Extensions.AppsPromo"; | 319 const char* kAppsPromoHistogram = "Extensions.AppsPromo"; |
320 #if defined(OS_CHROMEOS) | |
321 const char* kAccessExtensionCrxPath = | |
322 "/usr/share/chromeos-assets/accessibility/extensions"; | |
asargent_no_longer_on_chrome
2011/01/20 05:55:59
I think we discussed this offline, but you'll need
Chaitanya
2011/01/20 20:04:52
We have a green signal on that. See Issues 6317007
| |
323 #endif | |
320 } | 324 } |
OLD | NEW |