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

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

Issue 214863002: Extension API enterprise.platformKeys. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Some minor cleanups. Created 6 years, 7 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 | Annotate | Revision Log
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 // 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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 "downloadsInternal": { 298 "downloadsInternal": {
299 "internal": true, 299 "internal": true,
300 "channel": "stable", 300 "channel": "stable",
301 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 301 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
302 }, 302 },
303 "echoPrivate": { 303 "echoPrivate": {
304 "platforms": ["chromeos"], 304 "platforms": ["chromeos"],
305 "dependencies": ["permission:echoPrivate"], 305 "dependencies": ["permission:echoPrivate"],
306 "contexts": ["blessed_extension"] 306 "contexts": ["blessed_extension"]
307 }, 307 },
308 "enterprise.platformKeys": {
309 "dependencies": ["permission:enterprise.platformKeys"],
310 "contexts": ["blessed_extension"]
311 },
312 "enterprise.platformKeysInternal": {
313 "dependencies": ["permission:enterprise.platformKeys"],
314 "internal": true,
315 "contexts": ["blessed_extension"]
316 },
308 "enterprise.platformKeysPrivate": { 317 "enterprise.platformKeysPrivate": {
309 "platforms": ["chromeos"], 318 "platforms": ["chromeos"],
310 "dependencies": ["permission:enterprise.platformKeysPrivate"], 319 "dependencies": ["permission:enterprise.platformKeysPrivate"],
311 "contexts": ["blessed_extension"] 320 "contexts": ["blessed_extension"]
312 }, 321 },
313 "events": { 322 "events": {
314 "internal": true, 323 "internal": true,
315 "channel": "stable", 324 "channel": "stable",
316 "extension_types": ["platform_app", "extension"], 325 "extension_types": ["platform_app", "extension"],
317 "contexts": "all", 326 "contexts": "all",
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
764 "internal": true, 773 "internal": true,
765 "channel": "stable", 774 "channel": "stable",
766 "dependencies": ["permission:webview"], 775 "dependencies": ["permission:webview"],
767 "contexts": ["blessed_extension"] 776 "contexts": ["blessed_extension"]
768 }, 777 },
769 "windows": { 778 "windows": {
770 "dependencies": ["api:tabs"], 779 "dependencies": ["api:tabs"],
771 "contexts": ["blessed_extension"] 780 "contexts": ["blessed_extension"]
772 } 781 }
773 } 782 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698