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

Side by Side Diff: chrome/common/extensions/api/declarative_content.json

Issue 1822303002: [Extensions] Convert APIs to use movable types [4] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Istiaque's Created 4 years, 9 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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": "declarativeContent", 7 "namespace": "declarativeContent",
8 "description": "Use the <code>chrome.declarativeContent</code> API to take a ctions depending on the content of a page, without requiring permission to read the page's content.", 8 "description": "Use the <code>chrome.declarativeContent</code> API to take a ctions depending on the content of a page, without requiring permission to read the page's content.",
9 "compiler_options": {"use_movable_types": true},
9 "types": [ 10 "types": [
10 { 11 {
11 "id": "ImageDataType", 12 "id": "ImageDataType",
12 "type": "binary", 13 "type": "binary",
13 "isInstanceOf": "ImageData", 14 "isInstanceOf": "ImageData",
14 "additionalProperties": { "type": "any" }, 15 "additionalProperties": { "type": "any" },
15 "description": "See <a href=\"https://developer.mozilla.org/en-US/docs/W eb/API/ImageData\">https://developer.mozilla.org/en-US/docs/Web/API/ImageData</a >.", 16 "description": "See <a href=\"https://developer.mozilla.org/en-US/docs/W eb/API/ImageData\">https://developer.mozilla.org/en-US/docs/Web/API/ImageData</a >.",
16 "inline_doc": true 17 "inline_doc": true
17 }, 18 },
18 { 19 {
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 "actions": [ 142 "actions": [
142 "declarativeContent.RequestContentScript", 143 "declarativeContent.RequestContentScript",
143 "declarativeContent.SetIcon", 144 "declarativeContent.SetIcon",
144 "declarativeContent.ShowPageAction" 145 "declarativeContent.ShowPageAction"
145 ] 146 ]
146 } 147 }
147 } 148 }
148 ] 149 ]
149 } 150 }
150 ] 151 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/debugger.json ('k') | chrome/common/extensions/api/desktop_capture.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698