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

Unified Diff: chrome/common/extensions/api/guest_view_internal.json

Issue 494853004: Move guest_view_internal_api to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_browser_extensions.gypi ('k') | chrome/common/extensions/api/schemas.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/guest_view_internal.json
diff --git a/chrome/common/extensions/api/guest_view_internal.json b/chrome/common/extensions/api/guest_view_internal.json
deleted file mode 100644
index fa96482f48a6ffca44987ef071656fb7a7b69c03..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/api/guest_view_internal.json
+++ /dev/null
@@ -1,86 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-[
- {
- "namespace": "guestViewInternal",
- "compiler_options": {
- "implemented_in": "chrome/browser/extensions/api/guest_view/guest_view_internal_api.h"
- },
- "description": "none",
- "types": [
- {
- "id": "Size",
- "type": "object",
- "properties": {
- "width": {
- "type": "integer"
- },
- "height": {
- "type": "integer"
- }
- }
- },
- {
- "id": "AutoSizeParams",
- "type": "object",
- "description": "Autosize parameters.",
- "properties": {
- "enableAutoSize": {
- "type": "boolean"
- },
- "min": {
- "$ref": "Size"
- },
- "max": {
- "$ref": "Size"
- }
- }
- }
- ],
- "functions": [
- {
- "name": "createGuest",
- "type": "function",
- "parameters": [
- {
- "type": "string",
- "name": "viewType",
- "nodoc": true
- },
- {
- "type": "object",
- "name": "createParams",
- "additionalProperties": {"type": "any"}
- },
- {
- "type": "function",
- "name": "callback",
- "parameters": [
- {
- "type": "integer",
- "name": "instanceId"
- }
- ]
- }
- ]
- },
- {
- "name": "setAutoSize",
- "type": "function",
- "parameters": [
- {
- "type": "integer",
- "name": "instanceId",
- "description": "The instance ID of the guest <webview> process. This not exposed to developers through the API."
- },
- {
- "$ref": "AutoSizeParams",
- "name": "params"
- }
- ]
- }
- ]
- }
-]
« no previous file with comments | « chrome/chrome_browser_extensions.gypi ('k') | chrome/common/extensions/api/schemas.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698