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.infobars", | 7 "namespace": "experimental.infobars", |
| 8 "compiler_options": { |
| 9 "implemented_in": "chrome/browser/infobars/infobar_extension_api.h" |
| 10 }, |
8 "dependencies": [ "windows" ], | 11 "dependencies": [ "windows" ], |
9 "types": [], | 12 "types": [], |
10 "functions": [ | 13 "functions": [ |
11 { | 14 { |
12 "name": "show", | 15 "name": "show", |
13 "type": "function", | 16 "type": "function", |
14 "description": "Shows an infobar in the specified tab. The infobar will
be closed automatically when the tab navigates. Use window.close() to close the
infobar before then.", | 17 "description": "Shows an infobar in the specified tab. The infobar will
be closed automatically when the tab navigates. Use window.close() to close the
infobar before then.", |
15 "parameters": [ | 18 "parameters": [ |
16 { | 19 { |
17 "name": "details", | 20 "name": "details", |
(...skipping 24 matching lines...) Expand all Loading... |
42 { | 45 { |
43 "name": "window", "$ref": "windows.Window", "description": "Cont
ains details about the window in which the infobar was created." | 46 "name": "window", "$ref": "windows.Window", "description": "Cont
ains details about the window in which the infobar was created." |
44 } | 47 } |
45 ] | 48 ] |
46 } | 49 } |
47 ] | 50 ] |
48 } | 51 } |
49 ] | 52 ] |
50 } | 53 } |
51 ] | 54 ] |
OLD | NEW |