| OLD | NEW |
| 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 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 8 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
| 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 9 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
| 10 | 10 |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 "fileSystem": { | 369 "fileSystem": { |
| 370 "dependencies": ["permission:fileSystem"], | 370 "dependencies": ["permission:fileSystem"], |
| 371 "contexts": ["blessed_extension"] | 371 "contexts": ["blessed_extension"] |
| 372 }, | 372 }, |
| 373 "fileSystemProvider": { | 373 "fileSystemProvider": { |
| 374 "dependencies": ["permission:fileSystemProvider"], | 374 "dependencies": ["permission:fileSystemProvider"], |
| 375 "contexts": ["blessed_extension"] | 375 "contexts": ["blessed_extension"] |
| 376 }, | 376 }, |
| 377 "fileSystemProviderInternal": { | 377 "fileSystemProviderInternal": { |
| 378 "internal": true, | 378 "internal": true, |
| 379 "dependencies": ["fileSystemProvider"], | 379 "dependencies": ["permission:fileSystemProvider"], |
| 380 "contexts": ["blessed_extension"] | 380 "contexts": ["blessed_extension"] |
| 381 }, | 381 }, |
| 382 "firstRunPrivate": { | 382 "firstRunPrivate": { |
| 383 "platforms": ["chromeos"], | 383 "platforms": ["chromeos"], |
| 384 "dependencies": ["permission:firstRunPrivate"], | 384 "dependencies": ["permission:firstRunPrivate"], |
| 385 "contexts": ["blessed_extension"] | 385 "contexts": ["blessed_extension"] |
| 386 }, | 386 }, |
| 387 "fontSettings": { | 387 "fontSettings": { |
| 388 "dependencies": ["permission:fontSettings"], | 388 "dependencies": ["permission:fontSettings"], |
| 389 "contexts": ["blessed_extension"] | 389 "contexts": ["blessed_extension"] |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 806 "internal": true, | 806 "internal": true, |
| 807 "channel": "stable", | 807 "channel": "stable", |
| 808 "dependencies": ["permission:webview"], | 808 "dependencies": ["permission:webview"], |
| 809 "contexts": ["blessed_extension"] | 809 "contexts": ["blessed_extension"] |
| 810 }, | 810 }, |
| 811 "windows": { | 811 "windows": { |
| 812 "dependencies": ["api:tabs"], | 812 "dependencies": ["api:tabs"], |
| 813 "contexts": ["blessed_extension"] | 813 "contexts": ["blessed_extension"] |
| 814 } | 814 } |
| 815 } | 815 } |
| OLD | NEW |