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

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

Issue 1143303004: Add IDL and stub implementation for chrome.usersPrivate API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make isOwner a required field Created 5 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
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 703 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 "contexts": ["blessed_extension"] 714 "contexts": ["blessed_extension"]
715 }, 715 },
716 "tts": { 716 "tts": {
717 "dependencies": ["permission:tts"], 717 "dependencies": ["permission:tts"],
718 "contexts": ["blessed_extension"] 718 "contexts": ["blessed_extension"]
719 }, 719 },
720 "ttsEngine": { 720 "ttsEngine": {
721 "dependencies": ["permission:ttsEngine"], 721 "dependencies": ["permission:ttsEngine"],
722 "contexts": ["blessed_extension"] 722 "contexts": ["blessed_extension"]
723 }, 723 },
724 "usersPrivate": [{
725 "dependencies": ["permission:usersPrivate"],
726 "contexts": ["blessed_extension"]
727 }, {
728 "channel": "trunk",
729 "contexts": ["webui"],
730 "matches": [
731 "chrome://md-settings/*",
732 "chrome://settings/*",
733 "chrome://settings-frame/*"
734 ]
735 }],
724 "virtualKeyboardPrivate": { 736 "virtualKeyboardPrivate": {
725 "dependencies": ["permission:virtualKeyboardPrivate"], 737 "dependencies": ["permission:virtualKeyboardPrivate"],
726 "contexts": ["blessed_extension"] 738 "contexts": ["blessed_extension"]
727 }, 739 },
728 "wallpaper": { 740 "wallpaper": {
729 "dependencies": ["permission:wallpaper"], 741 "dependencies": ["permission:wallpaper"],
730 "contexts": ["blessed_extension"] 742 "contexts": ["blessed_extension"]
731 }, 743 },
732 "wallpaperPrivate": { 744 "wallpaperPrivate": {
733 "dependencies": ["permission:wallpaperPrivate"], 745 "dependencies": ["permission:wallpaperPrivate"],
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
776 "internal": true, 788 "internal": true,
777 "channel": "stable", 789 "channel": "stable",
778 "dependencies": ["permission:webview"], 790 "dependencies": ["permission:webview"],
779 "contexts": ["blessed_extension"] 791 "contexts": ["blessed_extension"]
780 }, 792 },
781 "windows": { 793 "windows": {
782 "dependencies": ["api:tabs"], 794 "dependencies": ["api:tabs"],
783 "contexts": ["blessed_extension"] 795 "contexts": ["blessed_extension"]
784 } 796 }
785 } 797 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_extensions.gypi ('k') | chrome/common/extensions/api/_permission_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698