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

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

Issue 797183005: Add a mimeHandler extension API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@streams-lifetime
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 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 "contexts": ["blessed_extension"] 510 "contexts": ["blessed_extension"]
511 }, 511 },
512 "metricsPrivate": { 512 "metricsPrivate": {
513 "dependencies": ["permission:metricsPrivate"], 513 "dependencies": ["permission:metricsPrivate"],
514 "contexts": ["blessed_extension"] 514 "contexts": ["blessed_extension"]
515 }, 515 },
516 "mdns": { 516 "mdns": {
517 "dependencies": ["permission:mdns"], 517 "dependencies": ["permission:mdns"],
518 "contexts": ["blessed_extension"] 518 "contexts": ["blessed_extension"]
519 }, 519 },
520 "mimeHandler": {
521 "dependencies": ["permission:streamsPrivate"],
Zachary Kuznia 2015/01/14 00:40:08 Is there a reason to reuse this permission?
Sam McNally 2015/01/14 01:48:49 Switched to the mime_types_handler manifest featur
522 "contexts": ["blessed_extension"]
523 },
520 "mimeHandlerViewGuestInternal": { 524 "mimeHandlerViewGuestInternal": {
521 "internal": true, 525 "internal": true,
522 "contexts": "all", 526 "contexts": "all",
523 "channel": "dev", 527 "channel": "dev",
524 "matches": ["<all_urls>"] 528 "matches": ["<all_urls>"]
525 }, 529 },
526 "musicManagerPrivate": { 530 "musicManagerPrivate": {
527 "dependencies": ["permission:musicManagerPrivate"], 531 "dependencies": ["permission:musicManagerPrivate"],
528 "contexts": ["blessed_extension"] 532 "contexts": ["blessed_extension"]
529 }, 533 },
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 "internal": true, 705 "internal": true,
702 "channel": "stable", 706 "channel": "stable",
703 "dependencies": ["permission:webview"], 707 "dependencies": ["permission:webview"],
704 "contexts": ["blessed_extension"] 708 "contexts": ["blessed_extension"]
705 }, 709 },
706 "windows": { 710 "windows": {
707 "dependencies": ["api:tabs"], 711 "dependencies": ["api:tabs"],
708 "contexts": ["blessed_extension"] 712 "contexts": ["blessed_extension"]
709 } 713 }
710 } 714 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698