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

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

Issue 254473011: Introduce chrome.shell.createWindow stub API for app_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: works (shell-api) Created 6 years, 8 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 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 "contexts": ["blessed_extension"] 636 "contexts": ["blessed_extension"]
637 }, 637 },
638 "serial": { 638 "serial": {
639 "dependencies": ["permission:serial"], 639 "dependencies": ["permission:serial"],
640 "contexts": ["blessed_extension"] 640 "contexts": ["blessed_extension"]
641 }, 641 },
642 "sessions": { 642 "sessions": {
643 "dependencies": ["permission:sessions"], 643 "dependencies": ["permission:sessions"],
644 "contexts": ["blessed_extension"] 644 "contexts": ["blessed_extension"]
645 }, 645 },
646 // TODO(jamescook): Move this to app_shell _api_features.json once that file
647 // exists.
648 "shell": {
649 "contexts": ["blessed_extension"],
650 "extension_types": ["platform_app"]
651 },
646 "signedInDevices": { 652 "signedInDevices": {
647 "dependencies": ["permission:signedInDevices"], 653 "dependencies": ["permission:signedInDevices"],
648 "contexts": ["blessed_extension"] 654 "contexts": ["blessed_extension"]
649 }, 655 },
650 "socket": { 656 "socket": {
651 "dependencies": ["permission:socket"], 657 "dependencies": ["permission:socket"],
652 "contexts": ["blessed_extension"] 658 "contexts": ["blessed_extension"]
653 }, 659 },
654 "sockets.tcp": { 660 "sockets.tcp": {
655 "dependencies": ["manifest:sockets"], 661 "dependencies": ["manifest:sockets"],
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 "internal": true, 819 "internal": true,
814 "channel": "stable", 820 "channel": "stable",
815 "dependencies": ["permission:webview"], 821 "dependencies": ["permission:webview"],
816 "contexts": ["blessed_extension"] 822 "contexts": ["blessed_extension"]
817 }, 823 },
818 "windows": { 824 "windows": {
819 "dependencies": ["api:tabs"], 825 "dependencies": ["api:tabs"],
820 "contexts": ["blessed_extension"] 826 "contexts": ["blessed_extension"]
821 } 827 }
822 } 828 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698