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

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

Issue 267863005: Adds syncedNotificationsPrivate API IDL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 // See c/c/e/features/* to understand this file, in particular feature.h, 5 // See c/c/e/features/* to understand this file, in particular feature.h,
6 // simple_feature.h, and base_feature_provider.h. 6 // simple_feature.h, and base_feature_provider.h.
7 // 7 //
8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context 8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context
9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc.
10 10
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 672 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
673 }, 673 },
674 "streamsPrivate": { 674 "streamsPrivate": {
675 "dependencies": ["permission:streamsPrivate"], 675 "dependencies": ["permission:streamsPrivate"],
676 "contexts": ["blessed_extension"] 676 "contexts": ["blessed_extension"]
677 }, 677 },
678 "syncFileSystem": { 678 "syncFileSystem": {
679 "dependencies": ["permission:syncFileSystem"], 679 "dependencies": ["permission:syncFileSystem"],
680 "contexts": ["blessed_extension"] 680 "contexts": ["blessed_extension"]
681 }, 681 },
682 "syncedNotificationsPrivate": {
683 "channel": "dev",
not at google - send to devlin 2014/05/02 21:37:38 channel restriction should be on the permission no
dewittj 2014/05/03 00:07:49 Done.
684 "contexts": ["blessed_extension"],
685 "dependencies": ["permission:syncedNotificationsPrivate"]
686 },
682 "systemIndicator": { 687 "systemIndicator": {
683 "dependencies": ["manifest:system_indicator"], 688 "dependencies": ["manifest:system_indicator"],
684 "contexts": ["blessed_extension"] 689 "contexts": ["blessed_extension"]
685 }, 690 },
686 "system.cpu": { 691 "system.cpu": {
687 "dependencies": ["permission:system.cpu"], 692 "dependencies": ["permission:system.cpu"],
688 "contexts": ["blessed_extension"] 693 "contexts": ["blessed_extension"]
689 }, 694 },
690 "system.display": { 695 "system.display": {
691 "dependencies": ["permission:system.display"], 696 "dependencies": ["permission:system.display"],
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 "internal": true, 822 "internal": true,
818 "channel": "stable", 823 "channel": "stable",
819 "dependencies": ["permission:webview"], 824 "dependencies": ["permission:webview"],
820 "contexts": ["blessed_extension"] 825 "contexts": ["blessed_extension"]
821 }, 826 },
822 "windows": { 827 "windows": {
823 "dependencies": ["api:tabs"], 828 "dependencies": ["api:tabs"],
824 "contexts": ["blessed_extension"] 829 "contexts": ["blessed_extension"]
825 } 830 }
826 } 831 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698