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

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

Issue 60583003: The chrome.screenlockPrivate API allows select apps to control the ChromeOS ScreenLocker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 1 month 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 { 8 {
9 "activityLogPrivate": { 9 "activityLogPrivate": {
10 "dependencies": ["permission:activityLogPrivate"], 10 "dependencies": ["permission:activityLogPrivate"],
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 "platforms": ["chromeos"], 303 "platforms": ["chromeos"],
304 "dependencies": ["permission:fileBrowserHandler"], 304 "dependencies": ["permission:fileBrowserHandler"],
305 "contexts": ["blessed_extension"] 305 "contexts": ["blessed_extension"]
306 }, 306 },
307 "fileBrowserHandlerInternal": { 307 "fileBrowserHandlerInternal": {
308 "internal": true, 308 "internal": true,
309 "platforms": ["chromeos"], 309 "platforms": ["chromeos"],
310 "channel": "stable", 310 "channel": "stable",
311 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] 311 "contexts": ["blessed_extension", "unblessed_extension", "content_script"]
312 }, 312 },
313 "screenlockPrivate": {
314 "channel": "stable",
Matt Perry 2013/11/12 21:26:30 you don't need this line - thedependency on the pe
benjhayden 2013/11/13 00:46:23 Done.
315 "platforms": ["chromeos"],
316 "dependencies": ["permission:screenlockPrivate"],
317 "extension_types": ["platform_app"],
318 "whitelist": ["begdogjjbmiahnbahpidlnbgpbjbpajl"],
Matt Perry 2013/11/12 21:26:30 ditto.
benjhayden 2013/11/13 00:46:23 Done.
319 "contexts": ["blessed_extension", "unblessed_extension"]
320 },
313 "fileBrowserPrivate": { 321 "fileBrowserPrivate": {
314 "platforms": ["chromeos"], 322 "platforms": ["chromeos"],
315 "dependencies": ["permission:fileBrowserPrivate"], 323 "dependencies": ["permission:fileBrowserPrivate"],
316 "contexts": ["blessed_extension"] 324 "contexts": ["blessed_extension"]
317 }, 325 },
318 "fileSystem": { 326 "fileSystem": {
319 "dependencies": ["permission:fileSystem"], 327 "dependencies": ["permission:fileSystem"],
320 "contexts": ["blessed_extension"] 328 "contexts": ["blessed_extension"]
321 }, 329 },
322 "fileSystemProvider": { 330 "fileSystemProvider": {
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 "internal": true, 739 "internal": true,
732 "channel": "stable", 740 "channel": "stable",
733 "dependencies": ["permission:webview"], 741 "dependencies": ["permission:webview"],
734 "contexts": ["blessed_extension"] 742 "contexts": ["blessed_extension"]
735 }, 743 },
736 "windows": { 744 "windows": {
737 "dependencies": ["api:tabs"], 745 "dependencies": ["api:tabs"],
738 "contexts": ["blessed_extension"] 746 "contexts": ["blessed_extension"]
739 } 747 }
740 } 748 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698