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

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

Issue 11547033: Implement declarativeContent API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Dominic's comments Created 7 years, 11 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 | Annotate | Revision Log
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 "activeTab": { 6 "activeTab": {
7 "channel": "dev", 7 "channel": "dev",
8 "extension_types": ["extension", "packaged_app"], 8 "extension_types": ["extension", "packaged_app"],
9 "min_manifest_version": 2 9 "min_manifest_version": 2
10 }, 10 },
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 "extension_types": ["extension", "packaged_app"] 111 "extension_types": ["extension", "packaged_app"]
112 }, 112 },
113 "debugger": { 113 "debugger": {
114 "channel": "stable", 114 "channel": "stable",
115 "extension_types": ["extension", "packaged_app"] 115 "extension_types": ["extension", "packaged_app"]
116 }, 116 },
117 "devtools": { 117 "devtools": {
118 "channel": "stable", 118 "channel": "stable",
119 "extension_types": ["extension", "packaged_app"] 119 "extension_types": ["extension", "packaged_app"]
120 }, 120 },
121 "declarativeContent": {
122 "channel": "trunk",
123 "extension_types": ["extension"]
124 },
121 "declarativeWebRequest": { 125 "declarativeWebRequest": {
122 "channel": "beta", 126 "channel": "beta",
123 "extension_types": ["extension", "packaged_app"] 127 "extension_types": ["extension", "packaged_app"]
124 }, 128 },
125 "downloads": { 129 "downloads": {
126 "channel": "dev", 130 "channel": "dev",
127 "extension_types": [ 131 "extension_types": [
128 "extension", "packaged_app" 132 "extension", "packaged_app"
129 ] 133 ]
130 }, 134 },
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 }, 417 },
414 "webRequestBlocking": { 418 "webRequestBlocking": {
415 "channel": "stable", 419 "channel": "stable",
416 "extension_types": ["extension", "packaged_app"] 420 "extension_types": ["extension", "packaged_app"]
417 }, 421 },
418 "webview": { 422 "webview": {
419 "channel": "stable", 423 "channel": "stable",
420 "extension_types": ["platform_app"] 424 "extension_types": ["platform_app"]
421 } 425 }
422 } 426 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698