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

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

Issue 2659533003: Remove the notificationProvider extension API (Closed)
Patch Set: Created 3 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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 chrome/common/extensions/api/_features.md to understand this file, as 6 // See chrome/common/extensions/api/_features.md to understand this file, as
7 // well as feature.h, simple_feature.h, and base_feature_provider.h. 7 // well as 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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 "mimeHandlerViewGuestInternal": { 604 "mimeHandlerViewGuestInternal": {
605 "internal": true, 605 "internal": true,
606 "contexts": "all", 606 "contexts": "all",
607 "channel": "stable", 607 "channel": "stable",
608 "matches": ["<all_urls>"] 608 "matches": ["<all_urls>"]
609 }, 609 },
610 "musicManagerPrivate": { 610 "musicManagerPrivate": {
611 "dependencies": ["permission:musicManagerPrivate"], 611 "dependencies": ["permission:musicManagerPrivate"],
612 "contexts": ["blessed_extension"] 612 "contexts": ["blessed_extension"]
613 }, 613 },
614 "notificationProvider": {
615 "dependencies": ["permission:notificationProvider"],
616 "contexts": ["blessed_extension"]
617 },
618 "notifications": { 614 "notifications": {
619 "dependencies": ["permission:notifications"], 615 "dependencies": ["permission:notifications"],
620 "contexts": ["blessed_extension"] 616 "contexts": ["blessed_extension"]
621 }, 617 },
622 "omnibox": { 618 "omnibox": {
623 "dependencies": ["manifest:omnibox"], 619 "dependencies": ["manifest:omnibox"],
624 "contexts": ["blessed_extension"] 620 "contexts": ["blessed_extension"]
625 }, 621 },
626 "pageAction": { 622 "pageAction": {
627 "dependencies": ["manifest:page_action"], 623 "dependencies": ["manifest:page_action"],
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
833 "internal": true, 829 "internal": true,
834 "channel": "stable", 830 "channel": "stable",
835 "dependencies": ["permission:webview"], 831 "dependencies": ["permission:webview"],
836 "contexts": ["blessed_extension"] 832 "contexts": ["blessed_extension"]
837 }, 833 },
838 "windows": { 834 "windows": {
839 "dependencies": ["api:tabs"], 835 "dependencies": ["api:tabs"],
840 "contexts": ["blessed_extension"] 836 "contexts": ["blessed_extension"]
841 } 837 }
842 } 838 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698