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

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

Issue 62763003: Leave fullscreen mode in an app window when ESC key is pressed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: with esc key overriding handling Created 7 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 (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 // See c/c/e/features/* to understand this file, in particular feature.h, 5 // See c/c/e/features/* to understand this file, in particular feature.h,
6 // simple_feature.h, and base_feature_provider.h. 6 // simple_feature.h, and base_feature_provider.h.
7 7
8 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: 8 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash:
9 // 9 //
10 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \ 10 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 // available only to extension/platform_app types. The implementation of 574 // available only to extension/platform_app types. The implementation of
575 // that functionality enforces that restriction in 575 // that functionality enforces that restriction in
576 // NotificationsApiFunction::IsNotificationsApiAvailable(). This is more 576 // NotificationsApiFunction::IsNotificationsApiAvailable(). This is more
577 // complicated than other namespaces because we are sharing the 577 // complicated than other namespaces because we are sharing the
578 // notifications permission with WebKit/Blink notifications. 578 // notifications permission with WebKit/Blink notifications.
579 "channel": "stable", 579 "channel": "stable",
580 "extension_types": [ 580 "extension_types": [
581 "extension", "legacy_packaged_app", "hosted_app", "platform_app" 581 "extension", "legacy_packaged_app", "hosted_app", "platform_app"
582 ] 582 ]
583 }, 583 },
584 "overrideEscFullscreen": {
585 "channel": "stable",
586 "extension_types": ["platform_app"]
587 },
584 "echoPrivate": { 588 "echoPrivate": {
585 "channel": "stable", 589 "channel": "stable",
586 "extension_types": ["extension", "legacy_packaged_app"], 590 "extension_types": ["extension", "legacy_packaged_app"],
587 "location": "component" 591 "location": "component"
588 }, 592 },
589 "pageCapture": { 593 "pageCapture": {
590 "channel": "stable", 594 "channel": "stable",
591 "extension_types": ["extension", "legacy_packaged_app"] 595 "extension_types": ["extension", "legacy_packaged_app"]
592 }, 596 },
593 "pointerLock": { 597 "pointerLock": {
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
862 // Only allowed for whitelisted extensions until all the caveats are 866 // Only allowed for whitelisted extensions until all the caveats are
863 // addressed. Tracked in crbug/285151. 867 // addressed. Tracked in crbug/285151.
864 "channel": "stable", 868 "channel": "stable",
865 "extension_types": ["extension"], 869 "extension_types": ["extension"],
866 "location": "component", 870 "location": "component",
867 "whitelist": [ 871 "whitelist": [
868 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension 872 "D519188F86D9ACCEE0412007B227D9936EB9676B" // GAIA Component Extension
869 ] 873 ]
870 }] 874 }]
871 } 875 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698