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

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

Issue 145663004: Replace "bluetooth" permission with manifest property. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 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 (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 // Note that specifying "web_page", "blessed_web_page", or "all" as a context 8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context
9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc.
10 10
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 }, 73 },
74 "audio": { 74 "audio": {
75 "dependencies": ["permission:audio"], 75 "dependencies": ["permission:audio"],
76 "contexts": ["blessed_extension"] 76 "contexts": ["blessed_extension"]
77 }, 77 },
78 "autotestPrivate": { 78 "autotestPrivate": {
79 "dependencies": ["permission:autotestPrivate"], 79 "dependencies": ["permission:autotestPrivate"],
80 "contexts": ["blessed_extension"] 80 "contexts": ["blessed_extension"]
81 }, 81 },
82 "bluetooth": { 82 "bluetooth": {
83 "dependencies": ["permission:bluetooth"], 83 "dependencies": ["manifest:bluetooth"],
84 "contexts": ["blessed_extension"] 84 "contexts": ["blessed_extension"]
85 }, 85 },
86 "bookmarkManagerPrivate": { 86 "bookmarkManagerPrivate": {
87 "dependencies": ["permission:bookmarkManagerPrivate"], 87 "dependencies": ["permission:bookmarkManagerPrivate"],
88 "contexts": ["blessed_extension"] 88 "contexts": ["blessed_extension"]
89 }, 89 },
90 "bookmarks": { 90 "bookmarks": {
91 "dependencies": ["permission:bookmarks"], 91 "dependencies": ["permission:bookmarks"],
92 "contexts": ["blessed_extension"] 92 "contexts": ["blessed_extension"]
93 }, 93 },
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 "internal": true, 735 "internal": true,
736 "channel": "stable", 736 "channel": "stable",
737 "dependencies": ["permission:webview"], 737 "dependencies": ["permission:webview"],
738 "contexts": ["blessed_extension"] 738 "contexts": ["blessed_extension"]
739 }, 739 },
740 "windows": { 740 "windows": {
741 "dependencies": ["api:tabs"], 741 "dependencies": ["api:tabs"],
742 "contexts": ["blessed_extension"] 742 "contexts": ["blessed_extension"]
743 } 743 }
744 } 744 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698