Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Side by Side Diff: chrome/common/extensions/extension_constants.h

Issue 6254007: Adding ChromeVox as a component extensions (enabled only for ChromeOS, for no... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 accessibility extensions are
265 // stored.
266 extern const char* kAccessExtensionPath;
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698