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

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: Move to /extensions, add constants file, git cl format 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 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 "contexts": ["blessed_extension"] 574 "contexts": ["blessed_extension"]
575 }, 575 },
576 "metricsPrivate": { 576 "metricsPrivate": {
577 "dependencies": ["permission:metricsPrivate"], 577 "dependencies": ["permission:metricsPrivate"],
578 "contexts": ["blessed_extension"] 578 "contexts": ["blessed_extension"]
579 }, 579 },
580 "mdns": { 580 "mdns": {
581 "dependencies": ["permission:mdns"], 581 "dependencies": ["permission:mdns"],
582 "contexts": ["blessed_extension"] 582 "contexts": ["blessed_extension"]
583 }, 583 },
584 "mimeHandlerViewGuestInternal": {
585 "internal": true,
586 "contexts": "all",
587 "channel": "dev",
588 "matches": ["<all_urls>"]
589 },
584 "musicManagerPrivate": { 590 "musicManagerPrivate": {
585 "dependencies": ["permission:musicManagerPrivate"], 591 "dependencies": ["permission:musicManagerPrivate"],
586 "contexts": ["blessed_extension"] 592 "contexts": ["blessed_extension"]
587 }, 593 },
588 "networkingPrivate": { 594 "networkingPrivate": {
589 "dependencies": ["permission:networkingPrivate"], 595 "dependencies": ["permission:networkingPrivate"],
590 "contexts": ["blessed_extension"] 596 "contexts": ["blessed_extension"]
591 }, 597 },
592 "notificationProvider": { 598 "notificationProvider": {
593 "dependencies": ["permission:notificationProvider"], 599 "dependencies": ["permission:notificationProvider"],
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 "internal": true, 853 "internal": true,
848 "channel": "stable", 854 "channel": "stable",
849 "dependencies": ["permission:webview"], 855 "dependencies": ["permission:webview"],
850 "contexts": ["blessed_extension"] 856 "contexts": ["blessed_extension"]
851 }, 857 },
852 "windows": { 858 "windows": {
853 "dependencies": ["api:tabs"], 859 "dependencies": ["api:tabs"],
854 "contexts": ["blessed_extension"] 860 "contexts": ["blessed_extension"]
855 } 861 }
856 } 862 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698