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

Side by Side Diff: chrome/common/extensions/api/chromeos_info_private.json

Issue 165643002: Expose customization ID via chromeInfoPrivate API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 [ 5 [
6 { 6 {
7 "namespace": "chromeosInfoPrivate", 7 "namespace": "chromeosInfoPrivate",
8 "description": "none", 8 "description": "none",
9 "compiler_options": { 9 "compiler_options": {
10 "implemented_in": "chrome/browser/chromeos/extensions/info_private_api.h" 10 "implemented_in": "chrome/browser/chromeos/extensions/info_private_api.h"
(...skipping 15 matching lines...) Expand all
26 { 26 {
27 "name": "callback", 27 "name": "callback",
28 "type": "function", 28 "type": "function",
29 "parameters": [ 29 "parameters": [
30 { 30 {
31 "name": "propertiesDictionary", 31 "name": "propertiesDictionary",
32 "type": "object", 32 "type": "object",
33 "description": "Dictionary which contains all requested properti es", 33 "description": "Dictionary which contains all requested properti es",
34 "properties": { 34 "properties": {
35 "board" : {"type": "string", "optional": "true", "description" : "Board name"}, 35 "board" : {"type": "string", "optional": "true", "description" : "Board name"},
36 "customizationId": {"type": "string", "optional": "true", "des cription": "Customization ID"},
36 "homeProvider" : {"type": "string", "optional": "true", "descr iption": "Home provider which is used by the cellular device"}, 37 "homeProvider" : {"type": "string", "optional": "true", "descr iption": "Home provider which is used by the cellular device"},
37 "hwid": {"type": "string", "optional": "true", "description": "Hardware ID"}, 38 "hwid": {"type": "string", "optional": "true", "description": "Hardware ID"},
38 "initialLocale" : {"type": "string", "optional": "true", "desc ription": "Initial locale for the device"}, 39 "initialLocale" : {"type": "string", "optional": "true", "desc ription": "Initial locale for the device"},
39 "isOwner" : {"type": "boolean", "optional": "true", "descripti on": "True if current logged in user is device owner"}, 40 "isOwner" : {"type": "boolean", "optional": "true", "descripti on": "True if current logged in user is device owner"},
40 "timezone" : {"type": "string", "optional": "true", "descripti on": "Timezone"}, 41 "timezone" : {"type": "string", "optional": "true", "descripti on": "Timezone"},
41 "a11yLargeCursorEnabled" : {"type": "boolean", "optional": "tr ue", "description": "If true, ChromeOS is showing enlarged cursor."}, 42 "a11yLargeCursorEnabled" : {"type": "boolean", "optional": "tr ue", "description": "If true, ChromeOS is showing enlarged cursor."},
42 "a11yStickyKeysEnabled" : {"type": "boolean", "optional": "tru e", "description": "If true, sticky keys are turned on."}, 43 "a11yStickyKeysEnabled" : {"type": "boolean", "optional": "tru e", "description": "If true, sticky keys are turned on."},
43 "a11ySpokenFeedbackEnabled" : {"type": "boolean", "optional": "true", "description": "If enabled, ChromeOS text-to-speech feature is turned on ."}, 44 "a11ySpokenFeedbackEnabled" : {"type": "boolean", "optional": "true", "description": "If enabled, ChromeOS text-to-speech feature is turned on ."},
44 "a11yHighContrastEnabled" : {"type": "boolean", "optional": "t rue", "description": "If true, all displays have high contrast mode turned on."} , 45 "a11yHighContrastEnabled" : {"type": "boolean", "optional": "t rue", "description": "If true, all displays have high contrast mode turned on."} ,
45 "a11yScreenMagnifierEnabled" : {"type": "boolean", "optional": "true", "description": "If true, all displays have screen magnifier turned on." }, 46 "a11yScreenMagnifierEnabled" : {"type": "boolean", "optional": "true", "description": "If true, all displays have screen magnifier turned on." },
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 { 80 {
80 "name": "propertyValue", 81 "name": "propertyValue",
81 "type": "any", 82 "type": "any",
82 "description": "Chrome OS system property value" 83 "description": "Chrome OS system property value"
83 } 84 }
84 ] 85 ]
85 } 86 }
86 ] 87 ]
87 } 88 }
88 ] 89 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698