Chromium Code Reviews| Index: grit/format/policy_templates/writers/doc_writer.py |
| =================================================================== |
| --- grit/format/policy_templates/writers/doc_writer.py (revision 173) |
| +++ grit/format/policy_templates/writers/doc_writer.py (working copy) |
| @@ -644,13 +644,15 @@ |
| 'dict': 'Dictionary', |
| 'external': 'External data reference', |
| } |
| + reg_dict = 'REG_SZ; %s' % self._GetLocalizedMessage( |
|
pastarmovj
2014/08/28 15:27:45
It used to be REG_SZ, now it is REG_SZ; is this in
|
| + 'complex_policies_on_windows') |
| self._REG_TYPE_MAP = { |
| 'string': 'REG_SZ', |
| 'int': 'REG_DWORD', |
| 'main': 'REG_DWORD', |
| 'int-enum': 'REG_DWORD', |
| 'string-enum': 'REG_SZ', |
| - 'dict': 'REG_SZ, encoded as a JSON string', |
| + 'dict': reg_dict, |
| } |
| # The CSS style-sheet used for the document. It will be used in Google |
| # Sites, which strips class attributes from HTML tags. To work around this, |