OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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": "webViewInternal", | 7 "namespace": "webViewInternal", |
8 "description": "none", | 8 "description": "none", |
9 "compiler_options": { | 9 "compiler_options": { |
10 "implemented_in": "extensions/browser/api/guest_view/web_view/web_view_int
ernal_api.h" | 10 "implemented_in": "extensions/browser/api/guest_view/web_view/web_view_int
ernal_api.h" |
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
553 "name": "reload", | 553 "name": "reload", |
554 "type": "function", | 554 "type": "function", |
555 "parameters": [ | 555 "parameters": [ |
556 { | 556 { |
557 "type": "integer", | 557 "type": "integer", |
558 "name": "instanceId" | 558 "name": "instanceId" |
559 } | 559 } |
560 ] | 560 ] |
561 }, | 561 }, |
562 { | 562 { |
| 563 "name": "reportExtensionId", |
| 564 "type": "function", |
| 565 "parameters": [ |
| 566 { |
| 567 "type": "integer", |
| 568 "name": "viewInstanceId", |
| 569 "description": "The instance ID of the WebView." |
| 570 } |
| 571 ] |
| 572 }, |
| 573 { |
563 "name": "setAllowTransparency", | 574 "name": "setAllowTransparency", |
564 "type": "function", | 575 "type": "function", |
565 "parameters": [ | 576 "parameters": [ |
566 { | 577 { |
567 "type": "integer", | 578 "type": "integer", |
568 "name": "instanceId" | 579 "name": "instanceId" |
569 }, | 580 }, |
570 { | 581 { |
571 "type": "boolean", | 582 "type": "boolean", |
572 "name": "allow" | 583 "name": "allow" |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
693 "type": "function", | 704 "type": "function", |
694 "description": "Called when deletion has completed.", | 705 "description": "Called when deletion has completed.", |
695 "optional": true, | 706 "optional": true, |
696 "parameters": [] | 707 "parameters": [] |
697 } | 708 } |
698 ] | 709 ] |
699 } | 710 } |
700 ] | 711 ] |
701 } | 712 } |
702 ] | 713 ] |
OLD | NEW |