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

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

Issue 12846011: Implement API features for the Extension API feature system (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
(Empty)
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
3 // found in the LICENSE file.
4
5 {
6 "bookmarks": {
7 "channel": "stable",
8 "dependencies": ["permission:bookmarks"],
9 "contexts": ["blessed_extension"]
10 },
11 "webstore": {
12 // Hosted apps can use the webstore API from within a blessed context.
13 "channel": "stable",
14 "extension_types": ["hosted_app"],
15 "contexts": ["blessed_extension"],
not at google - send to devlin 2013/03/26 00:34:48 hm, the json has a bug, this should include web_pa
cduvall 2013/03/26 19:24:05 Done.
16 // Any webpage can use the webstore API.
17 "matches": [ "http://*/*", "https://*/*" ]
18 }
19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698