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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
348 }, | 348 }, |
349 "mdns": { | 349 "mdns": { |
350 "dependencies": ["permission:mdns"], | 350 "dependencies": ["permission:mdns"], |
351 "contexts": ["blessed_extension"] | 351 "contexts": ["blessed_extension"] |
352 }, | 352 }, |
353 "musicManagerPrivate": { | 353 "musicManagerPrivate": { |
354 "dependencies": ["permission:musicManagerPrivate"], | 354 "dependencies": ["permission:musicManagerPrivate"], |
355 "contexts": ["blessed_extension"] | 355 "contexts": ["blessed_extension"] |
356 }, | 356 }, |
357 "networkingPrivate": { | 357 "networkingPrivate": { |
358 "platform": "chromeos", | |
tbarzic
2013/10/03 20:19:00
can we specify multiple platforms here?
it would b
mef
2013/10/08 21:46:26
AFAIU currently "platform" could only specify "chr
tbarzic
2013/10/10 20:58:39
ok, we could add "platforms": ["windows", "chromeo
mef
2013/10/11 22:16:29
Fair point. I'll add other platforms handling as s
tbarzic
2013/10/12 02:14:09
sg
mef
2013/10/17 02:33:24
Done.
| |
359 "dependencies": ["permission:networkingPrivate"], | 358 "dependencies": ["permission:networkingPrivate"], |
360 "contexts": ["blessed_extension"] | 359 "contexts": ["blessed_extension"] |
361 }, | 360 }, |
362 "notifications": { | 361 "notifications": { |
363 "dependencies": ["permission:notifications"], | 362 "dependencies": ["permission:notifications"], |
364 "contexts": ["blessed_extension"] | 363 "contexts": ["blessed_extension"] |
365 }, | 364 }, |
366 "omnibox": { | 365 "omnibox": { |
367 "dependencies": ["manifest:omnibox"], | 366 "dependencies": ["manifest:omnibox"], |
368 "contexts": ["blessed_extension"] | 367 "contexts": ["blessed_extension"] |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
613 "webview": { | 612 "webview": { |
614 "internal": true, | 613 "internal": true, |
615 "dependencies": ["permission:webview"], | 614 "dependencies": ["permission:webview"], |
616 "contexts": ["blessed_extension"] | 615 "contexts": ["blessed_extension"] |
617 }, | 616 }, |
618 "windows": { | 617 "windows": { |
619 "dependencies": ["api:tabs"], | 618 "dependencies": ["api:tabs"], |
620 "contexts": ["blessed_extension"] | 619 "contexts": ["blessed_extension"] |
621 } | 620 } |
622 } | 621 } |
OLD | NEW |