| Index: grit/format/policy_templates/writers/adm_writer.py
|
| ===================================================================
|
| --- grit/format/policy_templates/writers/adm_writer.py (revision 177)
|
| +++ grit/format/policy_templates/writers/adm_writer.py (working copy)
|
| @@ -152,6 +152,9 @@
|
| builder.AddLine('END POLICY', -1)
|
| builder.AddLine()
|
|
|
| + def WriteComment(self, comment):
|
| + self.lines.AddLine('; ' + comment)
|
| +
|
| def WritePolicy(self, policy):
|
| if self.CanBeMandatory(policy):
|
| self._WritePolicy(policy,
|
| @@ -205,6 +208,9 @@
|
| return lines
|
|
|
| def BeginTemplate(self):
|
| + if self._GetChromiumVersionString() is not None:
|
| + self.WriteComment(self.config['build'] + ' version: ' + \
|
| + self._GetChromiumVersionString())
|
| self._AddGuiString(self.config['win_supported_os'],
|
| self.messages['win_supported_winxpsp2']['text'])
|
| category_path = self.config['win_mandatory_category_path']
|
|
|