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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 | 261 |
262 // The buckets used in the apps promo histogram. | 262 // The buckets used in the apps promo histogram. |
263 enum AppsPromoBuckets { | 263 enum AppsPromoBuckets { |
264 PROMO_LAUNCH_APP, | 264 PROMO_LAUNCH_APP, |
265 PROMO_LAUNCH_WEB_STORE, | 265 PROMO_LAUNCH_WEB_STORE, |
266 PROMO_CLOSE, | 266 PROMO_CLOSE, |
267 PROMO_EXPIRE, | 267 PROMO_EXPIRE, |
268 PROMO_SEEN, | 268 PROMO_SEEN, |
269 PROMO_BUCKET_BOUNDARY | 269 PROMO_BUCKET_BOUNDARY |
270 }; | 270 }; |
| 271 |
| 272 #if defined(OS_CHROMEOS) |
| 273 // The directory path on a ChromeOS device where accessibility extensions are |
| 274 // stored. |
| 275 extern const char* kAccessExtensionPath; |
| 276 #endif |
271 } // extension_misc | 277 } // extension_misc |
272 | 278 |
273 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ | 279 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ |
OLD | NEW |