Chromium Code Reviews| Index: net/base/registry_controlled_domains/effective_tld_names_unittest1.gperf |
| diff --git a/net/base/registry_controlled_domains/effective_tld_names_unittest1.gperf b/net/base/registry_controlled_domains/effective_tld_names_unittest1.gperf |
| index 7100908007b5728057db9044e287d1bd924ffaff..3ab56e112298b7a4048b14bd8e4d81308bace56e 100644 |
| --- a/net/base/registry_controlled_domains/effective_tld_names_unittest1.gperf |
| +++ b/net/base/registry_controlled_domains/effective_tld_names_unittest1.gperf |
| @@ -10,14 +10,18 @@ |
| struct DomainRule { |
| const char *name; |
| int type; // 1: exception, 2: wildcard |
| + bool is_private; |
| }; |
| %% |
| -jp, 0 |
| -ac.jp, 0 |
| -bar.jp, 2 |
| -baz.bar.jp, 2 |
| -pref.bar.jp, 1 |
| -bar.baz.com, 0 |
| -c, 2 |
| -b.c, 1 |
| +jp, 0, false |
| +ac.jp, 0, false |
| +bar.jp, 2, false |
| +baz.bar.jp, 2, false |
| +pref.bar.jp, 1, false |
| +bar.baz.com, 0, false |
| +c, 2, false |
| +b.c, 1, false |
| +no, 0, false |
| +priv.no, 0, true |
| +private, 0, true |
| %% |