Chromium Code Reviews| 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 "app": { | 9 "app": { |
| 10 "channel": "stable", | 10 "channel": "stable", |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 367 }, | 367 }, |
| 368 "version": { | 368 "version": { |
| 369 "channel": "stable", | 369 "channel": "stable", |
| 370 "extension_types": "all" | 370 "extension_types": "all" |
| 371 }, | 371 }, |
| 372 "web_accessible_resources": { | 372 "web_accessible_resources": { |
| 373 "channel": "stable", | 373 "channel": "stable", |
| 374 "extension_types": [ | 374 "extension_types": [ |
| 375 "extension", "legacy_packaged_app", "hosted_app" | 375 "extension", "legacy_packaged_app", "hosted_app" |
| 376 ] | 376 ] |
| 377 }, | |
| 378 "webview_accessible_resources": { | |
|
Matt Perry
2013/09/24 21:06:54
Now that I think about it, maybe these should be g
Fady Samuel
2013/09/24 23:05:02
Agreed, that seems cleaner. Done!
| |
| 379 "channel": "dev", | |
| 380 "extension_types": ["platform_app"] | |
| 381 }, | |
| 382 "webview_privileged_partitions": { | |
| 383 "channel": "dev", | |
| 384 "extension_types": ["platform_app"] | |
| 377 } | 385 } |
| 378 } | 386 } |
| OLD | NEW |