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

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

Issue 847333004: Move parts from enterprise.platformKeysInternal to platformKeysInternal for reuse. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cert_idl
Patch Set: Created 5 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 // 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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 }, 559 },
560 "pageCapture": { 560 "pageCapture": {
561 "dependencies": ["permission:pageCapture"], 561 "dependencies": ["permission:pageCapture"],
562 "contexts": ["blessed_extension"] 562 "contexts": ["blessed_extension"]
563 }, 563 },
564 "permissions": { 564 "permissions": {
565 "channel": "stable", 565 "channel": "stable",
566 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], 566 "extension_types": ["extension", "legacy_packaged_app", "platform_app"],
567 "contexts": ["blessed_extension"] 567 "contexts": ["blessed_extension"]
568 }, 568 },
569 "platformKeysInternal": [{
570 "dependencies": ["permission:enterprise.platformKeys"],
571 "internal": true,
572 "contexts": ["blessed_extension"]
573 }],
569 "preferencesPrivate": { 574 "preferencesPrivate": {
570 "dependencies": ["permission:preferencesPrivate"], 575 "dependencies": ["permission:preferencesPrivate"],
571 "contexts": ["blessed_extension"] 576 "contexts": ["blessed_extension"]
572 }, 577 },
573 "principalsPrivate": { 578 "principalsPrivate": {
574 "dependencies": ["permission:principalsPrivate"], 579 "dependencies": ["permission:principalsPrivate"],
575 "contexts": ["blessed_extension"] 580 "contexts": ["blessed_extension"]
576 }, 581 },
577 "privacy": { 582 "privacy": {
578 "dependencies": ["permission:privacy"], 583 "dependencies": ["permission:privacy"],
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 "internal": true, 716 "internal": true,
712 "channel": "stable", 717 "channel": "stable",
713 "dependencies": ["permission:webview"], 718 "dependencies": ["permission:webview"],
714 "contexts": ["blessed_extension"] 719 "contexts": ["blessed_extension"]
715 }, 720 },
716 "windows": { 721 "windows": {
717 "dependencies": ["api:tabs"], 722 "dependencies": ["api:tabs"],
718 "contexts": ["blessed_extension"] 723 "contexts": ["blessed_extension"]
719 } 724 }
720 } 725 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698