| 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 { | 8 { |
| 9 "activityLogPrivate": { | 9 "activityLogPrivate": { |
| 10 "dependencies": ["permission:activityLogPrivate"], | 10 "dependencies": ["permission:activityLogPrivate"], |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 "contexts": ["blessed_extension"] | 424 "contexts": ["blessed_extension"] |
| 425 }, | 425 }, |
| 426 "socket": { | 426 "socket": { |
| 427 "dependencies": ["permission:socket"], | 427 "dependencies": ["permission:socket"], |
| 428 "contexts": ["blessed_extension"] | 428 "contexts": ["blessed_extension"] |
| 429 }, | 429 }, |
| 430 "storage": { | 430 "storage": { |
| 431 "dependencies": ["permission:storage"], | 431 "dependencies": ["permission:storage"], |
| 432 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 432 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
| 433 }, | 433 }, |
| 434 "widgets": { |
| 435 "dependencies": ["permission:widgets"], |
| 436 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
| 437 }, |
| 434 "streamsPrivate": { | 438 "streamsPrivate": { |
| 435 "dependencies": ["permission:streamsPrivate"], | 439 "dependencies": ["permission:streamsPrivate"], |
| 436 "contexts": ["blessed_extension"] | 440 "contexts": ["blessed_extension"] |
| 437 }, | 441 }, |
| 438 "syncFileSystem": { | 442 "syncFileSystem": { |
| 439 "dependencies": ["permission:syncFileSystem"], | 443 "dependencies": ["permission:syncFileSystem"], |
| 440 "contexts": ["blessed_extension"] | 444 "contexts": ["blessed_extension"] |
| 441 }, | 445 }, |
| 442 "systemIndicator": { | 446 "systemIndicator": { |
| 443 "dependencies": ["manifest:system_indicator"], | 447 "dependencies": ["manifest:system_indicator"], |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 }, | 539 }, |
| 536 "webview": { | 540 "webview": { |
| 537 "dependencies": ["permission:webview"], | 541 "dependencies": ["permission:webview"], |
| 538 "contexts": ["blessed_extension"] | 542 "contexts": ["blessed_extension"] |
| 539 }, | 543 }, |
| 540 "windows": { | 544 "windows": { |
| 541 "dependencies": ["permission:tabs"], | 545 "dependencies": ["permission:tabs"], |
| 542 "contexts": ["blessed_extension"] | 546 "contexts": ["blessed_extension"] |
| 543 } | 547 } |
| 544 } | 548 } |
| OLD | NEW |