| 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 "contexts": ["blessed_extension"] | 279 "contexts": ["blessed_extension"] |
| 280 }, | 280 }, |
| 281 "identityPrivate": { | 281 "identityPrivate": { |
| 282 "dependencies": ["permission:identityPrivate"], | 282 "dependencies": ["permission:identityPrivate"], |
| 283 "contexts": ["blessed_extension"] | 283 "contexts": ["blessed_extension"] |
| 284 }, | 284 }, |
| 285 "idle": { | 285 "idle": { |
| 286 "dependencies": ["permission:idle"], | 286 "dependencies": ["permission:idle"], |
| 287 "contexts": ["blessed_extension"] | 287 "contexts": ["blessed_extension"] |
| 288 }, | 288 }, |
| 289 "infobars": { |
| 290 "dependencies": ["permission:infobars"], |
| 291 "contexts": ["blessed_extension"] |
| 292 }, |
| 289 "input.ime": { | 293 "input.ime": { |
| 290 "platform": "chromeos", | 294 "platform": "chromeos", |
| 291 "dependencies": ["permission:input"], | 295 "dependencies": ["permission:input"], |
| 292 "contexts": ["blessed_extension"] | 296 "contexts": ["blessed_extension"] |
| 293 }, | 297 }, |
| 294 "inputMethodPrivate": { | 298 "inputMethodPrivate": { |
| 295 "platform": "chromeos", | 299 "platform": "chromeos", |
| 296 "dependencies": ["permission:inputMethodPrivate"], | 300 "dependencies": ["permission:inputMethodPrivate"], |
| 297 "contexts": ["blessed_extension"] | 301 "contexts": ["blessed_extension"] |
| 298 }, | 302 }, |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 }, | 559 }, |
| 556 "webview": { | 560 "webview": { |
| 557 "dependencies": ["permission:webview"], | 561 "dependencies": ["permission:webview"], |
| 558 "contexts": ["blessed_extension"] | 562 "contexts": ["blessed_extension"] |
| 559 }, | 563 }, |
| 560 "windows": { | 564 "windows": { |
| 561 "dependencies": ["permission:tabs"], | 565 "dependencies": ["permission:tabs"], |
| 562 "contexts": ["blessed_extension"] | 566 "contexts": ["blessed_extension"] |
| 563 } | 567 } |
| 564 } | 568 } |
| OLD | NEW |