Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Side by Side Diff: extensions/common/api/_behavior_features.json

Issue 789383002: Add the basic infrastructure for the Behavior feature type: BehaviorFeature and (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@flag-features
Patch Set: rebase Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « extensions/common/BUILD.gn ('k') | extensions/common/features/behavior_feature.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // This features file defines switches used to control Extension behaviour,
6 // typically whitelist configuration.
7 //
8 // See extensions/common/features/* to understand this file, in particular
9 // feature.h, simple_feature.h, and base_feature_provider.h.
10 //
11 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash:
12 //
13 // $ echo -n "aaaabbbbccccddddeeeeffffgggghhhh" | \
14 // sha1sum | tr '[:lower:]' '[:upper:]'
15 // 9A0417016F345C934A1A88F55CA17C05014EEEBA -
16 //
17 // Google employees: please update http://go/chrome-api-whitelist to map
18 // hashes back to ids.
19
20 {
21 "whitelisted_for_incognito": {
22 "channel": "stable",
23 "extension_types": "all",
24 // This is "external_component" for legacy reasons; it should be
25 // unnecessary given there's a whitelist.
26 "location": "external_component",
27 "whitelist": [
28 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900
29 "D57DE394F36DC1C3220E7604C575D29C51A6C495", // http://crbug.com/319444
30 "3F65507A3B39259B38C8173C6FFA3D12DF64CCE9" // http://crbug.com/371562
31 ]
32 }
33 }
OLDNEW
« no previous file with comments | « extensions/common/BUILD.gn ('k') | extensions/common/features/behavior_feature.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698