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

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

Issue 313633003: Revert 274549 "Add generateAppForLink function in chrome.management" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 6 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 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 "management.createAppShortcut": { 535 "management.createAppShortcut": {
536 "dependencies": ["permission:management"], 536 "dependencies": ["permission:management"],
537 "channel": "dev", 537 "channel": "dev",
538 "contexts": ["blessed_extension"] 538 "contexts": ["blessed_extension"]
539 }, 539 },
540 "management.setLaunchType": { 540 "management.setLaunchType": {
541 "dependencies": ["permission:management"], 541 "dependencies": ["permission:management"],
542 "channel": "dev", 542 "channel": "dev",
543 "contexts": ["blessed_extension"] 543 "contexts": ["blessed_extension"]
544 }, 544 },
545 "management.generateAppForLink": {
546 "dependencies": ["permission:management"],
547 "channel": "dev",
548 "contexts": ["blessed_extension"]
549 },
550 // This is not a real API, only here for documentation purposes. 545 // This is not a real API, only here for documentation purposes.
551 // See http://crbug.com/275944 for background. 546 // See http://crbug.com/275944 for background.
552 "manifestTypes": { 547 "manifestTypes": {
553 "internal": true, 548 "internal": true,
554 "channel": "stable", 549 "channel": "stable",
555 "contexts": ["blessed_extension"] 550 "contexts": ["blessed_extension"]
556 }, 551 },
557 "mediaGalleries": { 552 "mediaGalleries": {
558 "dependencies": ["permission:mediaGalleries"], 553 "dependencies": ["permission:mediaGalleries"],
559 "contexts": ["blessed_extension"] 554 "contexts": ["blessed_extension"]
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
801 "internal": true, 796 "internal": true,
802 "channel": "stable", 797 "channel": "stable",
803 "dependencies": ["permission:webview"], 798 "dependencies": ["permission:webview"],
804 "contexts": ["blessed_extension"] 799 "contexts": ["blessed_extension"]
805 }, 800 },
806 "windows": { 801 "windows": {
807 "dependencies": ["api:tabs"], 802 "dependencies": ["api:tabs"],
808 "contexts": ["blessed_extension"] 803 "contexts": ["blessed_extension"]
809 } 804 }
810 } 805 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698