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

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

Issue 266353006: Add generateAppForLink function in chrome.management (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: 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 510 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 "management.uninstallSelf": { 521 "management.uninstallSelf": {
522 "dependencies": [], 522 "dependencies": [],
523 "channel": "stable", 523 "channel": "stable",
524 "extension_types": ["extension", "legacy_packaged_app", "platform_app"] 524 "extension_types": ["extension", "legacy_packaged_app", "platform_app"]
525 }, 525 },
526 "management.createAppShortcut": { 526 "management.createAppShortcut": {
527 "dependencies": ["permission:management"], 527 "dependencies": ["permission:management"],
528 "channel": "dev", 528 "channel": "dev",
529 "contexts": ["blessed_extension"] 529 "contexts": ["blessed_extension"]
530 }, 530 },
531 "management.generateAppForLink": {
532 "dependencies": ["permission:management"],
533 "channel": "dev",
534 "contexts": ["blessed_extension"]
535 },
531 // This is not a real API, only here for documentation purposes. 536 // This is not a real API, only here for documentation purposes.
532 // See http://crbug.com/275944 for background. 537 // See http://crbug.com/275944 for background.
533 "manifestTypes": { 538 "manifestTypes": {
534 "internal": true, 539 "internal": true,
535 "channel": "stable", 540 "channel": "stable",
536 "contexts": ["blessed_extension"] 541 "contexts": ["blessed_extension"]
537 }, 542 },
538 "mediaGalleries": { 543 "mediaGalleries": {
539 "dependencies": ["permission:mediaGalleries"], 544 "dependencies": ["permission:mediaGalleries"],
540 "contexts": ["blessed_extension"] 545 "contexts": ["blessed_extension"]
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 "internal": true, 787 "internal": true,
783 "channel": "stable", 788 "channel": "stable",
784 "dependencies": ["permission:webview"], 789 "dependencies": ["permission:webview"],
785 "contexts": ["blessed_extension"] 790 "contexts": ["blessed_extension"]
786 }, 791 },
787 "windows": { 792 "windows": {
788 "dependencies": ["api:tabs"], 793 "dependencies": ["api:tabs"],
789 "contexts": ["blessed_extension"] 794 "contexts": ["blessed_extension"]
790 } 795 }
791 } 796 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698