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

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

Issue 114803007: Register bindings for blessed web contexts (aka hosted app contexts) by hand (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: jeffrey Created 6 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 | 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 //
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.
7 10
8 { 11 {
9 "activityLogPrivate": { 12 "activityLogPrivate": {
10 "dependencies": ["permission:activityLogPrivate"], 13 "dependencies": ["permission:activityLogPrivate"],
11 "contexts": ["blessed_extension"] 14 "contexts": ["blessed_extension"]
12 }, 15 },
13 "adview": { 16 "adview": {
14 "dependencies": ["permission:adview"], 17 "dependencies": ["permission:adview"],
15 "contexts": ["blessed_extension"] 18 "contexts": ["blessed_extension"]
16 }, 19 },
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 "internal": true, 735 "internal": true,
733 "channel": "stable", 736 "channel": "stable",
734 "dependencies": ["permission:webview"], 737 "dependencies": ["permission:webview"],
735 "contexts": ["blessed_extension"] 738 "contexts": ["blessed_extension"]
736 }, 739 },
737 "windows": { 740 "windows": {
738 "dependencies": ["api:tabs"], 741 "dependencies": ["api:tabs"],
739 "contexts": ["blessed_extension"] 742 "contexts": ["blessed_extension"]
740 } 743 }
741 } 744 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698