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 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 | 10 |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 | 252 |
253 // The buckets used in the apps promo histogram. | 253 // The buckets used in the apps promo histogram. |
254 enum AppsPromoBuckets { | 254 enum AppsPromoBuckets { |
255 PROMO_LAUNCH_APP, | 255 PROMO_LAUNCH_APP, |
256 PROMO_LAUNCH_WEB_STORE, | 256 PROMO_LAUNCH_WEB_STORE, |
257 PROMO_CLOSE, | 257 PROMO_CLOSE, |
258 PROMO_EXPIRE, | 258 PROMO_EXPIRE, |
259 PROMO_SEEN, | 259 PROMO_SEEN, |
260 PROMO_BUCKET_BOUNDARY | 260 PROMO_BUCKET_BOUNDARY |
261 }; | 261 }; |
| 262 |
| 263 #if defined(OS_CHROMEOS) |
| 264 // The directory path on a ChromeOS device where .crx files of accessibility |
| 265 // extensions are stored. |
| 266 extern const char* kAccessExtensionCrxPath; |
| 267 #endif |
262 } // extension_misc | 268 } // extension_misc |
263 | 269 |
264 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 270 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |