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

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

Issue 6134006: Integrate user strings into the JSON policy template file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 years, 11 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: tools/grit/grit/format/policy_templates/writers/adm_writer.py
diff --git a/tools/grit/grit/format/policy_templates/writers/adm_writer.py b/tools/grit/grit/format/policy_templates/writers/adm_writer.py
index c3df88cd74b4f08e9775664ecb32fd6520c625a0..b55ede180c6633abfe19163d2309410e564aae8c 100644
--- a/tools/grit/grit/format/policy_templates/writers/adm_writer.py
+++ b/tools/grit/grit/format/policy_templates/writers/adm_writer.py
@@ -6,12 +6,12 @@
from grit.format.policy_templates.writers import template_writer
-def GetWriter(config, messages):
+def GetWriter(config):
'''Factory method for creating AdmWriter objects.
See the constructor of TemplateWriter for description of
arguments.
'''
- return AdmWriter(['win'], config, messages)
+ return AdmWriter(['win'], config)
class AdmWriter(template_writer.TemplateWriter):
@@ -125,7 +125,7 @@ class AdmWriter(template_writer.TemplateWriter):
def BeginTemplate(self):
category_path = self.config['win_category_path']
self._AddGuiString(self.config['win_supported_os'],
- self.messages[self.config['win_supported_os_msg']])
+ self.messages['win_supported_winxpsp2']['text'])
self._PrintLine(
'CLASS ' + self.config['win_group_policy_class'].upper(),
1)

Powered by Google App Engine
This is Rietveld 408576698