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

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

Issue 2939833002: Move chrome.fileSystem interface and bindings to //extensions (Closed)
Patch Set: rebase Created 3 years, 5 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/extensions. 5 // This features file defines extension APIs implemented under src/extensions.
6 // See chrome/common/extensions/api/_features.md to understand this file, as 6 // See chrome/common/extensions/api/_features.md to understand this file, as
7 // well as feature.h, simple_feature.h, and feature_provider.h. 7 // well as feature.h, simple_feature.h, and 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 ] 166 ]
167 } 167 }
168 ], 168 ],
169 "events": { 169 "events": {
170 "internal": true, 170 "internal": true,
171 "channel": "stable", 171 "channel": "stable",
172 "extension_types": ["platform_app", "extension"], 172 "extension_types": ["platform_app", "extension"],
173 "contexts": "all", 173 "contexts": "all",
174 "matches": ["<all_urls>"] 174 "matches": ["<all_urls>"]
175 }, 175 },
176 "fileSystem": {
177 "dependencies": ["permission:fileSystem"],
178 "contexts": ["blessed_extension"]
179 },
176 "guestViewInternal": [ 180 "guestViewInternal": [
177 { 181 {
178 "internal": true, 182 "internal": true,
179 "channel": "stable", 183 "channel": "stable",
180 "contexts": ["blessed_extension"] 184 "contexts": ["blessed_extension"]
181 }, { 185 }, {
182 "internal": true, 186 "internal": true,
183 "channel": "stable", 187 "channel": "stable",
184 "contexts": ["webui"], 188 "contexts": ["webui"],
185 "matches": [ 189 "matches": [
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 }, { 577 }, {
574 "channel": "stable", 578 "channel": "stable",
575 "contexts": ["webui"], 579 "contexts": ["webui"],
576 "matches": [ 580 "matches": [
577 "chrome://chrome-signin/*", 581 "chrome://chrome-signin/*",
578 "chrome://media-router/*", 582 "chrome://media-router/*",
579 "chrome://oobe/*" 583 "chrome://oobe/*"
580 ] 584 ]
581 }] 585 }]
582 } 586 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698