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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
356 "contexts": ["blessed_extension"] | 356 "contexts": ["blessed_extension"] |
357 }, | 357 }, |
358 "fileSystem": { | 358 "fileSystem": { |
359 "dependencies": ["permission:fileSystem"], | 359 "dependencies": ["permission:fileSystem"], |
360 "contexts": ["blessed_extension"] | 360 "contexts": ["blessed_extension"] |
361 }, | 361 }, |
362 "fileSystemProvider": { | 362 "fileSystemProvider": { |
363 "dependencies": ["permission:fileSystemProvider"], | 363 "dependencies": ["permission:fileSystemProvider"], |
364 "contexts": ["blessed_extension"] | 364 "contexts": ["blessed_extension"] |
365 }, | 365 }, |
366 "fileSystemProviderInternal": { | |
367 "internal": true, | |
368 "dependencies": ["fileSystemProvider"], | |
369 "contexts": ["blessed_extension", "unblessed_extension"] | |
benwells
2014/03/31 02:24:10
Why is this available to more contexts than fileSy
mtomasz
2014/03/31 02:27:15
That wasn't my intention. It referred to fileBrows
benwells
2014/03/31 02:38:03
Can you just remove the unblessed_extension?
mtomasz
2014/03/31 03:16:47
Done.
| |
370 }, | |
366 "firstRunPrivate": { | 371 "firstRunPrivate": { |
367 "platforms": ["chromeos"], | 372 "platforms": ["chromeos"], |
368 "dependencies": ["permission:firstRunPrivate"], | 373 "dependencies": ["permission:firstRunPrivate"], |
369 "contexts": ["blessed_extension"] | 374 "contexts": ["blessed_extension"] |
370 }, | 375 }, |
371 "fontSettings": { | 376 "fontSettings": { |
372 "dependencies": ["permission:fontSettings"], | 377 "dependencies": ["permission:fontSettings"], |
373 "contexts": ["blessed_extension"] | 378 "contexts": ["blessed_extension"] |
374 }, | 379 }, |
375 "gcm": { | 380 "gcm": { |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
790 "internal": true, | 795 "internal": true, |
791 "channel": "stable", | 796 "channel": "stable", |
792 "dependencies": ["permission:webview"], | 797 "dependencies": ["permission:webview"], |
793 "contexts": ["blessed_extension"] | 798 "contexts": ["blessed_extension"] |
794 }, | 799 }, |
795 "windows": { | 800 "windows": { |
796 "dependencies": ["api:tabs"], | 801 "dependencies": ["api:tabs"], |
797 "contexts": ["blessed_extension"] | 802 "contexts": ["blessed_extension"] |
798 } | 803 } |
799 } | 804 } |
OLD | NEW |