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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 "type": "integer", | 363 "type": "integer", |
364 "name": "instanceId" | 364 "name": "instanceId" |
365 }, | 365 }, |
366 { | 366 { |
367 "type": "boolean", | 367 "type": "boolean", |
368 "name": "allow" | 368 "name": "allow" |
369 } | 369 } |
370 ] | 370 ] |
371 }, | 371 }, |
372 { | 372 { |
| 373 "name": "setAllowScaling", |
| 374 "type": "function", |
| 375 "parameters": [ |
| 376 { |
| 377 "type": "integer", |
| 378 "name": "instanceId" |
| 379 }, |
| 380 { |
| 381 "type": "boolean", |
| 382 "name": "allow" |
| 383 } |
| 384 ] |
| 385 }, |
| 386 { |
373 "name": "setName", | 387 "name": "setName", |
374 "type": "function", | 388 "type": "function", |
375 "parameters": [ | 389 "parameters": [ |
376 { | 390 { |
377 "type": "integer", | 391 "type": "integer", |
378 "name": "instanceId" | 392 "name": "instanceId" |
379 }, | 393 }, |
380 { | 394 { |
381 "type": "string", | 395 "type": "string", |
382 "name": "frameName" | 396 "name": "frameName" |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
476 "type": "function", | 490 "type": "function", |
477 "description": "Called when deletion has completed.", | 491 "description": "Called when deletion has completed.", |
478 "optional": true, | 492 "optional": true, |
479 "parameters": [] | 493 "parameters": [] |
480 } | 494 } |
481 ] | 495 ] |
482 } | 496 } |
483 ] | 497 ] |
484 } | 498 } |
485 ] | 499 ] |
OLD | NEW |