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

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

Issue 286933006: Implement a JavaScript API for document scanning (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Drop vestigial file-related code; kOnstify strings Created 6 years, 7 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 }, 284 },
285 "diagnostics": { 285 "diagnostics": {
286 "dependencies": ["permission:diagnostics"], 286 "dependencies": ["permission:diagnostics"],
287 "extension_types": ["platform_app"], 287 "extension_types": ["platform_app"],
288 "contexts": ["blessed_extension"] 288 "contexts": ["blessed_extension"]
289 }, 289 },
290 "dial": { 290 "dial": {
291 "dependencies": ["permission:dial"], 291 "dependencies": ["permission:dial"],
292 "contexts": ["blessed_extension"] 292 "contexts": ["blessed_extension"]
293 }, 293 },
294 "documentScan": {
295 "platforms": ["chromeos"],
296 "dependencies": ["permission:documentScan"],
297 "contexts": ["blessed_extension"]
298 },
294 "downloads": { 299 "downloads": {
295 "dependencies": ["permission:downloads"], 300 "dependencies": ["permission:downloads"],
296 "contexts": ["blessed_extension"] 301 "contexts": ["blessed_extension"]
297 }, 302 },
298 "downloadsInternal": { 303 "downloadsInternal": {
299 "internal": true, 304 "internal": true,
300 "channel": "stable", 305 "channel": "stable",
301 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 306 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
302 }, 307 },
303 "echoPrivate": { 308 "echoPrivate": {
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 "internal": true, 787 "internal": true,
783 "channel": "stable", 788 "channel": "stable",
784 "dependencies": ["permission:webview"], 789 "dependencies": ["permission:webview"],
785 "contexts": ["blessed_extension"] 790 "contexts": ["blessed_extension"]
786 }, 791 },
787 "windows": { 792 "windows": {
788 "dependencies": ["api:tabs"], 793 "dependencies": ["api:tabs"],
789 "contexts": ["blessed_extension"] 794 "contexts": ["blessed_extension"]
790 } 795 }
791 } 796 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698