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

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

Issue 356673003: Notification Provider API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added notification getter to permission_set_unittest 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 "contexts": ["blessed_extension"] 535 "contexts": ["blessed_extension"]
536 }, 536 },
537 "musicManagerPrivate": { 537 "musicManagerPrivate": {
538 "dependencies": ["permission:musicManagerPrivate"], 538 "dependencies": ["permission:musicManagerPrivate"],
539 "contexts": ["blessed_extension"] 539 "contexts": ["blessed_extension"]
540 }, 540 },
541 "networkingPrivate": { 541 "networkingPrivate": {
542 "dependencies": ["permission:networkingPrivate"], 542 "dependencies": ["permission:networkingPrivate"],
543 "contexts": ["blessed_extension"] 543 "contexts": ["blessed_extension"]
544 }, 544 },
545 "notificationGetter": {
546 "dependencies": ["permission:notificationGetter"],
547 "contexts": ["blessed_extension"]
548 },
545 "notifications": { 549 "notifications": {
546 "dependencies": ["permission:notifications"], 550 "dependencies": ["permission:notifications"],
547 "contexts": ["blessed_extension"] 551 "contexts": ["blessed_extension"]
548 }, 552 },
549 "omnibox": { 553 "omnibox": {
550 "dependencies": ["manifest:omnibox"], 554 "dependencies": ["manifest:omnibox"],
551 "contexts": ["blessed_extension"] 555 "contexts": ["blessed_extension"]
552 }, 556 },
553 "pageAction": { 557 "pageAction": {
554 "dependencies": ["manifest:page_action"], 558 "dependencies": ["manifest:page_action"],
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 "internal": true, 756 "internal": true,
753 "channel": "stable", 757 "channel": "stable",
754 "dependencies": ["permission:webview"], 758 "dependencies": ["permission:webview"],
755 "contexts": ["blessed_extension"] 759 "contexts": ["blessed_extension"]
756 }, 760 },
757 "windows": { 761 "windows": {
758 "dependencies": ["api:tabs"], 762 "dependencies": ["api:tabs"],
759 "contexts": ["blessed_extension"] 763 "contexts": ["blessed_extension"]
760 } 764 }
761 } 765 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698