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

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

Issue 8662008: Implement chrome.systemPrivate.getIncognitoModeAvailability extension API function (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Made destructor virtual Created 9 years 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 [ 1 [
2 { 2 {
3 "namespace": "extension", 3 "namespace": "extension",
4 "types": [ 4 "types": [
5 { 5 {
6 "id": "MessageSender", 6 "id": "MessageSender",
7 "type": "object", 7 "type": "object",
8 "description": "An object containing information about the script contex t that sent a message or request.", 8 "description": "An object containing information about the script contex t that sent a message or request.",
9 "properties": { 9 "properties": {
10 "tab": {"$ref": "Tab", "optional": true, "description":"This property will <b>only</b> be present when the connection was opened from a tab or content script."}, 10 "tab": {"$ref": "Tab", "optional": true, "description":"This property will <b>only</b> be present when the connection was opened from a tab or content script."},
(...skipping 9131 matching lines...) Expand 10 before | Expand all | Expand 10 after
9142 "description": "Page url" 9142 "description": "Page url"
9143 } 9143 }
9144 } 9144 }
9145 } 9145 }
9146 } 9146 }
9147 ] 9147 ]
9148 } 9148 }
9149 ] 9149 ]
9150 } 9150 }
9151 ] 9151 ]
9152 },
9153 {
9154 "namespace": "systemPrivate",
9155 "nodoc": true,
9156 "types": [],
9157 "functions": [],
9158 "properties": {
9159 "incognitoModeAvailability": {
9160 "$ref": "ChromeSetting",
9161 "value": ["incognitoModeAvailability", {"type": "string", "enum": ["enab led", "disabled", "forced"]}],
9162 "description": "Read-only property that exposes whether the incognito mo de is available to windows. One of 'enabled', 'disabled' (user cannot browse pag es in Incognito mode), 'forced' (all pages/sessions are forced into Incognito mo de)."
9163 }
9164 }
9152 } 9165 }
9153 ] 9166 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698