| 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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 }, | 472 }, |
| 473 "fileManagerPrivate": { | 473 "fileManagerPrivate": { |
| 474 "dependencies": ["permission:fileManagerPrivate"], | 474 "dependencies": ["permission:fileManagerPrivate"], |
| 475 "contexts": ["blessed_extension"] | 475 "contexts": ["blessed_extension"] |
| 476 }, | 476 }, |
| 477 "fileManagerPrivateInternal": { | 477 "fileManagerPrivateInternal": { |
| 478 "internal": true, | 478 "internal": true, |
| 479 "dependencies": ["permission:fileManagerPrivate"], | 479 "dependencies": ["permission:fileManagerPrivate"], |
| 480 "contexts": ["blessed_extension"] | 480 "contexts": ["blessed_extension"] |
| 481 }, | 481 }, |
| 482 "fileSystem": { | |
| 483 "dependencies": ["permission:fileSystem"], | |
| 484 "contexts": ["blessed_extension"] | |
| 485 }, | |
| 486 "fileSystemProvider": { | 482 "fileSystemProvider": { |
| 487 "dependencies": ["permission:fileSystemProvider"], | 483 "dependencies": ["permission:fileSystemProvider"], |
| 488 "contexts": ["blessed_extension"] | 484 "contexts": ["blessed_extension"] |
| 489 }, | 485 }, |
| 490 "fileSystemProviderInternal": { | 486 "fileSystemProviderInternal": { |
| 491 "internal": true, | 487 "internal": true, |
| 492 "dependencies": ["permission:fileSystemProvider"], | 488 "dependencies": ["permission:fileSystemProvider"], |
| 493 "contexts": ["blessed_extension"] | 489 "contexts": ["blessed_extension"] |
| 494 }, | 490 }, |
| 495 "firstRunPrivate": { | 491 "firstRunPrivate": { |
| (...skipping 349 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 |