| 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/web_view/web_view_internal_api.h
" | 10 "implemented_in": "extensions/browser/api/web_view/web_view_internal_api.h
" |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 "name": "reload", | 325 "name": "reload", |
| 326 "type": "function", | 326 "type": "function", |
| 327 "parameters": [ | 327 "parameters": [ |
| 328 { | 328 { |
| 329 "type": "integer", | 329 "type": "integer", |
| 330 "name": "instanceId" | 330 "name": "instanceId" |
| 331 } | 331 } |
| 332 ] | 332 ] |
| 333 }, | 333 }, |
| 334 { | 334 { |
| 335 "name": "setAllowTransparency", |
| 336 "type": "function", |
| 337 "parameters": [ |
| 338 { |
| 339 "type": "integer", |
| 340 "name": "instanceId" |
| 341 }, |
| 342 { |
| 343 "type": "boolean", |
| 344 "name": "allow" |
| 345 } |
| 346 ] |
| 347 }, |
| 348 { |
| 335 "name": "setName", | 349 "name": "setName", |
| 336 "type": "function", | 350 "type": "function", |
| 337 "parameters": [ | 351 "parameters": [ |
| 338 { | 352 { |
| 339 "type": "integer", | 353 "type": "integer", |
| 340 "name": "instanceId" | 354 "name": "instanceId" |
| 341 }, | 355 }, |
| 342 { | 356 { |
| 343 "type": "string", | 357 "type": "string", |
| 344 "name": "frameName" | 358 "name": "frameName" |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 "type": "function", | 452 "type": "function", |
| 439 "description": "Called when deletion has completed.", | 453 "description": "Called when deletion has completed.", |
| 440 "optional": true, | 454 "optional": true, |
| 441 "parameters": [] | 455 "parameters": [] |
| 442 } | 456 } |
| 443 ] | 457 ] |
| 444 } | 458 } |
| 445 ] | 459 ] |
| 446 } | 460 } |
| 447 ] | 461 ] |
| OLD | NEW |