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

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

Issue 1848103005: [Extensions] Remove the "use_movable_types" entry from idl/json files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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},
10 "types": [ 9 "types": [
11 { 10 {
12 "id": "ImageDataType", 11 "id": "ImageDataType",
13 "type": "binary", 12 "type": "binary",
14 "isInstanceOf": "ImageData", 13 "isInstanceOf": "ImageData",
15 "additionalProperties": { "type": "any" }, 14 "additionalProperties": { "type": "any" },
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 >.", 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 >.",
17 "inline_doc": true 16 "inline_doc": true
18 }, 17 },
19 { 18 {
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 "actions": [ 141 "actions": [
143 "declarativeContent.RequestContentScript", 142 "declarativeContent.RequestContentScript",
144 "declarativeContent.SetIcon", 143 "declarativeContent.SetIcon",
145 "declarativeContent.ShowPageAction" 144 "declarativeContent.ShowPageAction"
146 ] 145 ]
147 } 146 }
148 } 147 }
149 ] 148 ]
150 } 149 }
151 ] 150 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698