Index: grit/format/policy_templates/writers/json_writer.py |
=================================================================== |
--- grit/format/policy_templates/writers/json_writer.py (revision 177) |
+++ grit/format/policy_templates/writers/json_writer.py (working copy) |
@@ -39,6 +39,9 @@ |
def PreprocessPolicies(self, policy_list): |
return self.FlattenGroupsAndSortPolicies(policy_list) |
+ def WriteComment(self, comment): |
+ self._out.append('''// ''' + comment) |
pastarmovj
2014/10/07 14:54:35
No need for triple quotes.
cschuet1
2014/10/07 15:42:46
Done.
|
+ |
def WritePolicy(self, policy): |
if policy['type'] == 'external': |
# This type can only be set through cloud policy. |
@@ -69,6 +72,8 @@ |
self._first_written = False |
def BeginTemplate(self): |
+ if self._GetChromiumVersionString() is not None: |
+ self.WriteComment(self.config['build'] + ''' version: ''' + self._GetChromiumVersionString()) |
pastarmovj
2014/10/07 14:54:35
line too long, quotes.
cschuet1
2014/10/07 15:42:46
Done.
|
self._out.append(TEMPLATE_HEADER) |
def EndTemplate(self): |