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

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

Issue 11428116: First few API implementation of AppsDebuggerPrivate. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: . Created 8 years 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 "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 },
11 "alarms": { 11 "alarms": {
12 "channel": "stable", 12 "channel": "stable",
13 "extension_types": ["extension", "packaged_app", "platform_app"], 13 "extension_types": ["extension", "packaged_app", "platform_app"],
14 "min_manifest_version": 2 14 "min_manifest_version": 2
15 }, 15 },
16 "app.runtime": { 16 "app.runtime": {
17 "channel": "stable", 17 "channel": "stable",
18 "extension_types": ["platform_app"] 18 "extension_types": ["platform_app"]
19 }, 19 },
20 "app.window": { 20 "app.window": {
21 "channel": "stable", 21 "channel": "stable",
22 "extension_types": ["platform_app"] 22 "extension_types": ["platform_app"]
23 }, 23 },
24 "appsDebugger": {
25 "channel": "dev",
26 "extension_types": ["packaged_app"]
asargent_no_longer_on_chrome 2012/11/30 22:56:02 Should this be named appsDebuggerPrivate? Also, do
Gaurav 2012/11/30 23:32:42 Done.
27 },
24 "appNotifications": { 28 "appNotifications": {
25 "channel": "stable", 29 "channel": "stable",
26 "extension_types": ["packaged_app", "hosted_app"] 30 "extension_types": ["packaged_app", "hosted_app"]
27 }, 31 },
28 "audioCapture": { 32 "audioCapture": {
29 "channel": "stable", 33 "channel": "stable",
30 "extension_types": ["platform_app"] 34 "extension_types": ["platform_app"]
31 }, 35 },
32 "background": { 36 "background": {
33 "channel": "stable", 37 "channel": "stable",
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 }, 374 },
371 "webRequestBlocking": { 375 "webRequestBlocking": {
372 "channel": "stable", 376 "channel": "stable",
373 "extension_types": ["extension", "packaged_app"] 377 "extension_types": ["extension", "packaged_app"]
374 }, 378 },
375 "webview": { 379 "webview": {
376 "channel": "dev", 380 "channel": "dev",
377 "extension_types": ["platform_app"] 381 "extension_types": ["platform_app"]
378 } 382 }
379 } 383 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698