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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
384 }, | 384 }, |
385 "mdns": { | 385 "mdns": { |
386 "dependencies": ["permission:mdns"], | 386 "dependencies": ["permission:mdns"], |
387 "contexts": ["blessed_extension"] | 387 "contexts": ["blessed_extension"] |
388 }, | 388 }, |
389 "musicManagerPrivate": { | 389 "musicManagerPrivate": { |
390 "dependencies": ["permission:musicManagerPrivate"], | 390 "dependencies": ["permission:musicManagerPrivate"], |
391 "contexts": ["blessed_extension"] | 391 "contexts": ["blessed_extension"] |
392 }, | 392 }, |
393 "networkingPrivate": { | 393 "networkingPrivate": { |
394 "platform": "chromeos", | |
cbentzel
2013/10/16 12:51:36
Should you leave an exclusion for Linux?
cbentzel
2013/10/16 13:09:26
Actually, restrict this to only the platforms wher
mef
2013/10/17 02:33:25
Done.
| |
395 "dependencies": ["permission:networkingPrivate"], | 394 "dependencies": ["permission:networkingPrivate"], |
396 "contexts": ["blessed_extension"] | 395 "contexts": ["blessed_extension"] |
397 }, | 396 }, |
398 "notifications": { | 397 "notifications": { |
399 "dependencies": ["permission:notifications"], | 398 "dependencies": ["permission:notifications"], |
400 "contexts": ["blessed_extension"] | 399 "contexts": ["blessed_extension"] |
401 }, | 400 }, |
402 "omnibox": { | 401 "omnibox": { |
403 "dependencies": ["manifest:omnibox"], | 402 "dependencies": ["manifest:omnibox"], |
404 "contexts": ["blessed_extension"] | 403 "contexts": ["blessed_extension"] |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
672 "internal": true, | 671 "internal": true, |
673 "channel": "stable", | 672 "channel": "stable", |
674 "dependencies": ["permission:webview"], | 673 "dependencies": ["permission:webview"], |
675 "contexts": ["blessed_extension"] | 674 "contexts": ["blessed_extension"] |
676 }, | 675 }, |
677 "windows": { | 676 "windows": { |
678 "dependencies": ["api:tabs"], | 677 "dependencies": ["api:tabs"], |
679 "contexts": ["blessed_extension"] | 678 "contexts": ["blessed_extension"] |
680 } | 679 } |
681 } | 680 } |
OLD | NEW |