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

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

Issue 297123002: API proposal for chrome.app.window to intercept all keys. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use WidgetObserver instead of plumbing SetKeyboardIntercept through view::Widget Created 6 years, 1 month 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // This features file defines permissions for extension APIs implemented 5 // This features file defines permissions for extension APIs implemented
6 // under src/extensions. 6 // under src/extensions.
7 7
8 // See extensions/common/features/* to understand this file, in particular 8 // See extensions/common/features/* to understand this file, in particular
9 // feature.h, simple_feature.h, and base_feature_provider.h. 9 // feature.h, simple_feature.h, and base_feature_provider.h.
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 }, 55 },
56 { 56 {
57 "channel": "stable", 57 "channel": "stable",
58 "extension_types": ["extension"], 58 "extension_types": ["extension"],
59 "whitelist": [ 59 "whitelist": [
60 "06BE211D5F014BAB34BC22D9DDA09C63A81D828E", // http://crbug.com/425539 60 "06BE211D5F014BAB34BC22D9DDA09C63A81D828E", // http://crbug.com/425539
61 "F94EE6AB36D6C6588670B2B01EB65212D9C64E33" 61 "F94EE6AB36D6C6588670B2B01EB65212D9C64E33"
62 ] 62 ]
63 } 63 }
64 ], 64 ],
65 "app.window.interceptAllKeys": {
66 "channel": "dev",
67 "extension_types": ["platform_app"]
68 },
65 "app.window.shape": { 69 "app.window.shape": {
66 "channel": "stable", 70 "channel": "stable",
67 "extension_types": ["platform_app"] 71 "extension_types": ["platform_app"]
68 }, 72 },
69 "app.window.ime": [ 73 "app.window.ime": [
70 { 74 {
71 "channel": "stable", 75 "channel": "stable",
72 "extension_types": ["extension"], 76 "extension_types": ["extension"],
73 "platforms": ["chromeos"], 77 "platforms": ["chromeos"],
74 "whitelist": [ 78 "whitelist": [
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 "extension_types": ["extension", "legacy_packaged_app"] 347 "extension_types": ["extension", "legacy_packaged_app"]
344 } 348 }
345 ], 349 ],
346 "webRequestBlocking": [ 350 "webRequestBlocking": [
347 { 351 {
348 "channel": "stable", 352 "channel": "stable",
349 "extension_types": ["extension", "legacy_packaged_app"] 353 "extension_types": ["extension", "legacy_packaged_app"]
350 } 354 }
351 ] 355 ]
352 } 356 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698