Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: extensions/common/api/web_view_internal.json

Issue 584713002: Browser Plugin: Remove dependency on NPAPI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_content_window
Patch Set: Updated histograms.xml Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 ]
OLDNEW
« no previous file with comments | « extensions/browser/guest_view/web_view/web_view_guest.cc ('k') | extensions/renderer/resources/web_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698