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

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

Issue 1968083004: Implement the private API for quick unlock. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Fix compile Created 4 years, 5 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/extensions/api/quick_unlock_private.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 // This features file defines extension APIs implemented under src/chrome. 5 // This features file defines extension APIs implemented under src/chrome.
6 // See extensions/common/features/* to understand this file, in particular 6 // See extensions/common/features/* to understand this file, in particular
7 // feature.h, simple_feature.h, and base_feature_provider.h. 7 // feature.h, simple_feature.h, and base_feature_provider.h.
8 // 8 //
9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context
10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc.
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 }, 692 },
693 "proxy": { 693 "proxy": {
694 "dependencies": ["permission:proxy"], 694 "dependencies": ["permission:proxy"],
695 "contexts": ["blessed_extension"] 695 "contexts": ["blessed_extension"]
696 }, 696 },
697 "imageWriterPrivate": { 697 "imageWriterPrivate": {
698 "dependencies": ["permission:imageWriterPrivate"], 698 "dependencies": ["permission:imageWriterPrivate"],
699 "extension_types": ["platform_app"], 699 "extension_types": ["platform_app"],
700 "contexts": ["blessed_extension"] 700 "contexts": ["blessed_extension"]
701 }, 701 },
702 "quickUnlockPrivate": {
703 "channel": "stable",
704 "contexts": ["webui"],
705 "matches": [
706 "chrome://md-settings/*"
707 ],
708 "platforms": ["chromeos"]
709 },
702 "resourcesPrivate": [{ 710 "resourcesPrivate": [{
703 "dependencies": ["permission:resourcesPrivate"], 711 "dependencies": ["permission:resourcesPrivate"],
704 "contexts": ["blessed_extension"] 712 "contexts": ["blessed_extension"]
705 }, { 713 }, {
706 "channel": "stable", 714 "channel": "stable",
707 "contexts": ["webui"], 715 "contexts": ["webui"],
708 "matches": [ 716 "matches": [
709 "chrome://print/*" 717 "chrome://print/*"
710 ] 718 ]
711 }], 719 }],
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 "internal": true, 849 "internal": true,
842 "channel": "stable", 850 "channel": "stable",
843 "dependencies": ["permission:webview"], 851 "dependencies": ["permission:webview"],
844 "contexts": ["blessed_extension"] 852 "contexts": ["blessed_extension"]
845 }, 853 },
846 "windows": { 854 "windows": {
847 "dependencies": ["api:tabs"], 855 "dependencies": ["api:tabs"],
848 "contexts": ["blessed_extension"] 856 "contexts": ["blessed_extension"]
849 } 857 }
850 } 858 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/extensions/api/quick_unlock_private.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698