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

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

Issue 631223003: Include chromium version number in policy templates (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/reg_writer.py
===================================================================
--- grit/format/policy_templates/writers/reg_writer.py (revision 177)
+++ grit/format/policy_templates/writers/reg_writer.py (working copy)
@@ -106,5 +106,8 @@
def GetTemplateText(self):
prefix = ['Windows Registry Editor Version 5.00']
+ if self._GetChromiumVersionString() is not None:
+ prefix.append('; ' + self.config['build'] + ' version: ' + \
+ self._GetChromiumVersionString())
Joao da Silva 2014/10/13 10:30:58 Add a WriteComment to override the default impl in
cschuet (SLOW) 2014/10/14 18:55:20 Done.
all = prefix + self._mandatory + self._recommended
return self.NEWLINE.join(all)

Powered by Google App Engine
This is Rietveld 408576698