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

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: Rebase Created 4 years, 6 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
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 "dependencies": ["permission:quickUnlockPrivate"],
704 "contexts": ["blessed_extension"]
Devlin 2016/05/31 22:58:38 which extension is using this?
jdufault 2016/06/01 00:07:35 The test extension, and possibly an app launched b
Devlin 2016/06/01 17:44:12 If we move this to a unittest, we should be able t
705 }, {
706 "channel": "trunk",
707 "contexts": ["webui"],
708 "matches": [
709 "chrome://md-settings/*"
710 ]
711 }],
702 "resourcesPrivate": [{ 712 "resourcesPrivate": [{
703 "dependencies": ["permission:resourcesPrivate"], 713 "dependencies": ["permission:resourcesPrivate"],
704 "contexts": ["blessed_extension"] 714 "contexts": ["blessed_extension"]
705 }, { 715 }, {
706 "channel": "stable", 716 "channel": "stable",
707 "contexts": ["webui"], 717 "contexts": ["webui"],
708 "matches": [ 718 "matches": [
709 "chrome://print/*" 719 "chrome://print/*"
710 ] 720 ]
711 }], 721 }],
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 "internal": true, 851 "internal": true,
842 "channel": "stable", 852 "channel": "stable",
843 "dependencies": ["permission:webview"], 853 "dependencies": ["permission:webview"],
844 "contexts": ["blessed_extension"] 854 "contexts": ["blessed_extension"]
845 }, 855 },
846 "windows": { 856 "windows": {
847 "dependencies": ["api:tabs"], 857 "dependencies": ["api:tabs"],
848 "contexts": ["blessed_extension"] 858 "contexts": ["blessed_extension"]
849 } 859 }
850 } 860 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698