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

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

Issue 2236213002: Add quick unlock Settings in options page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 4 years, 4 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/browser/ui/webui/options/options_ui.cc ('k') | no next file » | 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 675 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 "imageWriterPrivate": { 686 "imageWriterPrivate": {
687 "dependencies": ["permission:imageWriterPrivate"], 687 "dependencies": ["permission:imageWriterPrivate"],
688 "extension_types": ["platform_app"], 688 "extension_types": ["platform_app"],
689 "contexts": ["blessed_extension"] 689 "contexts": ["blessed_extension"]
690 }, 690 },
691 "quickUnlockPrivate": { 691 "quickUnlockPrivate": {
692 "channel": "stable", 692 "channel": "stable",
693 "contexts": ["webui"], 693 "contexts": ["webui"],
694 "matches": [ 694 "matches": [
695 "chrome://md-settings/*", 695 "chrome://md-settings/*",
696 "chrome://settings/*" 696 "chrome://settings/*",
697 "chrome://settings-frame/*"
697 ], 698 ],
698 "platforms": ["chromeos"] 699 "platforms": ["chromeos"]
699 }, 700 },
700 "resourcesPrivate": [{ 701 "resourcesPrivate": [{
701 "dependencies": ["permission:resourcesPrivate"], 702 "dependencies": ["permission:resourcesPrivate"],
702 "contexts": ["blessed_extension"] 703 "contexts": ["blessed_extension"]
703 }, { 704 }, {
704 "channel": "stable", 705 "channel": "stable",
705 "contexts": ["webui"], 706 "contexts": ["webui"],
706 "matches": [ 707 "matches": [
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 "internal": true, 840 "internal": true,
840 "channel": "stable", 841 "channel": "stable",
841 "dependencies": ["permission:webview"], 842 "dependencies": ["permission:webview"],
842 "contexts": ["blessed_extension"] 843 "contexts": ["blessed_extension"]
843 }, 844 },
844 "windows": { 845 "windows": {
845 "dependencies": ["api:tabs"], 846 "dependencies": ["api:tabs"],
846 "contexts": ["blessed_extension"] 847 "contexts": ["blessed_extension"]
847 } 848 }
848 } 849 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/options/options_ui.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698