OLD | NEW |
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": "experimental.managedMode", | 7 "namespace": "managedModePrivate", |
8 "dependencies": ["types"], | 8 "nodoc": true, |
9 "functions": [ | 9 "functions": [ |
10 { | 10 { |
11 "name": "enter", | 11 "name": "enter", |
12 "type": "function", | 12 "type": "function", |
13 "description": "Shows a confirmation dialog, then puts the browser into
managed mode. The callback parameter will be true if managed mode was entered su
ccessfully, false if the user cancelled the confirmation. If managed mode is alr
eady on, trying to enter it again will have no effect.", | 13 "description": "Shows a confirmation dialog, then puts the browser into
managed mode. The callback parameter will be true if managed mode was entered su
ccessfully, false if the user cancelled the confirmation. If managed mode is alr
eady on, trying to enter it again will have no effect.", |
14 "parameters": [ | 14 "parameters": [ |
15 { | 15 { |
16 "type": "function", | 16 "type": "function", |
17 "name": "callback", | 17 "name": "callback", |
18 "optional": true, | 18 "optional": true, |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 } | 52 } |
53 } | 53 } |
54 } | 54 } |
55 ] | 55 ] |
56 } | 56 } |
57 ] | 57 ] |
58 } | 58 } |
59 ] | 59 ] |
60 } | 60 } |
61 ] | 61 ] |
OLD | NEW |