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

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

Issue 376033002: Adding MimeHandlerView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pending-zork-patch2
Patch Set: add switch to control feature, remove a DCHECK from extension_message_filter Created 6 years, 3 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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 "contexts": ["blessed_extension"] 581 "contexts": ["blessed_extension"]
582 }, 582 },
583 "metricsPrivate": { 583 "metricsPrivate": {
584 "dependencies": ["permission:metricsPrivate"], 584 "dependencies": ["permission:metricsPrivate"],
585 "contexts": ["blessed_extension"] 585 "contexts": ["blessed_extension"]
586 }, 586 },
587 "mdns": { 587 "mdns": {
588 "dependencies": ["permission:mdns"], 588 "dependencies": ["permission:mdns"],
589 "contexts": ["blessed_extension"] 589 "contexts": ["blessed_extension"]
590 }, 590 },
591 "mimeHandlerViewGuestInternal": {
592 "internal": true,
593 "contexts": "all",
594 "channel": "dev",
595 "matches": ["<all_urls>"]
596 },
591 "musicManagerPrivate": { 597 "musicManagerPrivate": {
592 "dependencies": ["permission:musicManagerPrivate"], 598 "dependencies": ["permission:musicManagerPrivate"],
593 "contexts": ["blessed_extension"] 599 "contexts": ["blessed_extension"]
594 }, 600 },
595 "networkingPrivate": { 601 "networkingPrivate": {
596 "dependencies": ["permission:networkingPrivate"], 602 "dependencies": ["permission:networkingPrivate"],
597 "contexts": ["blessed_extension"] 603 "contexts": ["blessed_extension"]
598 }, 604 },
599 "notificationProvider": { 605 "notificationProvider": {
600 "dependencies": ["permission:notificationProvider"], 606 "dependencies": ["permission:notificationProvider"],
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 "internal": true, 860 "internal": true,
855 "channel": "stable", 861 "channel": "stable",
856 "dependencies": ["permission:webview"], 862 "dependencies": ["permission:webview"],
857 "contexts": ["blessed_extension"] 863 "contexts": ["blessed_extension"]
858 }, 864 },
859 "windows": { 865 "windows": {
860 "dependencies": ["api:tabs"], 866 "dependencies": ["api:tabs"],
861 "contexts": ["blessed_extension"] 867 "contexts": ["blessed_extension"]
862 } 868 }
863 } 869 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698