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

Side by Side Diff: chrome/browser/resources/access_chromevox/build/build_defs.js

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
Property Changes:
Added: svn:executable
+ *
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6 * @fileoverview The ChromeVox build configuration.
7 *
8 * This file encapsulates the ChromeVox build information.
9 * It is yet another page script that is injected by the
10 * content script in case some other page scripts requests
11 * it in order to perform build specific operations.
12 */
13
14 goog.provide('cvox.BuildDefs');
15
16 /**
17 * Undefined build type.
18 * @type {number}
19 */
20 var BUILD_TYPE_UNDEFINED = -1;
21
22 /**
23 * Chrome user build type.
24 * @type {number}
25 */
26 var BUILD_TYPE_CHROME = 0;
27
28 /**
29 * Android user build type.
30 * @type {number}
31 */
32 var BUILD_TYPE_ANDROID = 1;
33
34 /**
35 * Chrome user build type.
36 * @type {number}
37 */
38 var BUILD_TYPE_ANDROID_DEV = 2;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698