Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 445 // See http://crbug.com/275944 for background. | 445 // See http://crbug.com/275944 for background. |
| 446 "extensionsManifestTypes": { | 446 "extensionsManifestTypes": { |
| 447 "internal": true, | 447 "internal": true, |
| 448 "channel": "stable", | 448 "channel": "stable", |
| 449 "contexts": ["blessed_extension"] | 449 "contexts": ["blessed_extension"] |
| 450 }, | 450 }, |
| 451 "feedbackPrivate": { | 451 "feedbackPrivate": { |
| 452 "dependencies": ["permission:feedbackPrivate"], | 452 "dependencies": ["permission:feedbackPrivate"], |
| 453 "contexts": ["blessed_extension"] | 453 "contexts": ["blessed_extension"] |
| 454 }, | 454 }, |
| 455 "feedbackPrivate.readLogSource": { | |
|
tbarzic
2017/06/01 19:23:46
platforms: [chromeos],
session_types:[kiosk]
shoul
Simon Que
2017/06/01 21:49:10
Done.
| |
| 456 "channel": "stable", | |
| 457 "contexts": ["blessed_extension"], | |
| 458 "dependencies": [], | |
| 459 "extension_types": ["extension", "platform_app"], | |
| 460 "platforms": ["chromeos"], | |
| 461 "session_types": ["kiosk"], | |
| 462 "whitelist": [ | |
| 463 "7910EAFDAF64B947E1CB31B333A9BD14CA556B6C", // Feedback UI. | |
| 464 "1C93BD3CF875F4A73C0B2A163BB8FBDA8B8B3D80", // http://crbug.com/293683 | |
| 465 "A3BC37E2148AC4E99BE4B16AF9D42DD1E592BBBE", // http://crbug.com/293683 | |
| 466 "8C3741E3AF0B93B6E8E0DDD499BB0B74839EA578", // http://crbug.com/234235 | |
| 467 "E703483CEF33DEC18B4B6DD84B5C776FB9182BDB", // http://crbug.com/234235 | |
| 468 "307E96539209F95A1A8740C713E6998A73657D96", // http://crbug.com/329690 | |
| 469 "4F25792AF1AA7483936DE29C07806F203C7170A0", // http://crbug.com/407693 | |
| 470 "BD8781D757D830FC2E85470A1B6E8A718B7EE0D9", // http://crbug.com/407693 | |
| 471 "4AC2B6C63C6480D150DFDA13E4A5956EB1D0DDBB", // http://crbug.com/407693 | |
| 472 "81986D4F846CEDDDB962643FA501D1780DD441BB" // http://crbug.com/407693 | |
| 473 ] | |
| 474 }, | |
| 455 "fileBrowserHandler": { | 475 "fileBrowserHandler": { |
| 456 "dependencies": ["permission:fileBrowserHandler"], | 476 "dependencies": ["permission:fileBrowserHandler"], |
| 457 "contexts": ["blessed_extension"] | 477 "contexts": ["blessed_extension"] |
| 458 }, | 478 }, |
| 459 "fileBrowserHandlerInternal": { | 479 "fileBrowserHandlerInternal": { |
| 460 "internal": true, | 480 "internal": true, |
| 461 "dependencies": ["permission:fileBrowserHandler"], | 481 "dependencies": ["permission:fileBrowserHandler"], |
| 462 "contexts": ["blessed_extension"] | 482 "contexts": ["blessed_extension"] |
| 463 }, | 483 }, |
| 464 "screenlockPrivate": { | 484 "screenlockPrivate": { |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 845 "dependencies": ["api:tabs"], | 865 "dependencies": ["api:tabs"], |
| 846 "contexts": ["blessed_extension"] | 866 "contexts": ["blessed_extension"] |
| 847 }, { | 867 }, { |
| 848 "channel": "stable", | 868 "channel": "stable", |
| 849 "contexts": ["webui"], | 869 "contexts": ["webui"], |
| 850 "matches": [ | 870 "matches": [ |
| 851 "chrome://bookmarks/*" | 871 "chrome://bookmarks/*" |
| 852 ] | 872 ] |
| 853 }] | 873 }] |
| 854 } | 874 } |
| OLD | NEW |