| 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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 }, | 468 }, |
| 469 "fileManagerPrivate": { | 469 "fileManagerPrivate": { |
| 470 "dependencies": ["permission:fileManagerPrivate"], | 470 "dependencies": ["permission:fileManagerPrivate"], |
| 471 "contexts": ["blessed_extension"] | 471 "contexts": ["blessed_extension"] |
| 472 }, | 472 }, |
| 473 "fileManagerPrivateInternal": { | 473 "fileManagerPrivateInternal": { |
| 474 "internal": true, | 474 "internal": true, |
| 475 "dependencies": ["permission:fileManagerPrivate"], | 475 "dependencies": ["permission:fileManagerPrivate"], |
| 476 "contexts": ["blessed_extension"] | 476 "contexts": ["blessed_extension"] |
| 477 }, | 477 }, |
| 478 "fileSystem": { | |
| 479 "dependencies": ["permission:fileSystem"], | |
| 480 "contexts": ["blessed_extension"] | |
| 481 }, | |
| 482 "fileSystemProvider": { | 478 "fileSystemProvider": { |
| 483 "dependencies": ["permission:fileSystemProvider"], | 479 "dependencies": ["permission:fileSystemProvider"], |
| 484 "contexts": ["blessed_extension"] | 480 "contexts": ["blessed_extension"] |
| 485 }, | 481 }, |
| 486 "fileSystemProviderInternal": { | 482 "fileSystemProviderInternal": { |
| 487 "internal": true, | 483 "internal": true, |
| 488 "dependencies": ["permission:fileSystemProvider"], | 484 "dependencies": ["permission:fileSystemProvider"], |
| 489 "contexts": ["blessed_extension"] | 485 "contexts": ["blessed_extension"] |
| 490 }, | 486 }, |
| 491 "firstRunPrivate": { | 487 "firstRunPrivate": { |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 845 "dependencies": ["api:tabs"], | 841 "dependencies": ["api:tabs"], |
| 846 "contexts": ["blessed_extension"] | 842 "contexts": ["blessed_extension"] |
| 847 }, { | 843 }, { |
| 848 "channel": "stable", | 844 "channel": "stable", |
| 849 "contexts": ["webui"], | 845 "contexts": ["webui"], |
| 850 "matches": [ | 846 "matches": [ |
| 851 "chrome://bookmarks/*" | 847 "chrome://bookmarks/*" |
| 852 ] | 848 ] |
| 853 }] | 849 }] |
| 854 } | 850 } |
| OLD | NEW |