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

Unified Diff: grit/format/policy_templates/writers/adm_writer.py

Issue 642443004: Add a chromium version to policy template files. (Closed) Base URL: http://grit-i18n.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 2 months 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 side-by-side diff with in-line comments
Download patch
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']
« no previous file with comments | « grit/format/policy_templates/writer_configuration.py ('k') | grit/format/policy_templates/writers/adm_writer_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698