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

Unified Diff: tools/grit/grit/format/policy_templates/writers/adml_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/adml_writer.py
diff --git a/tools/grit/grit/format/policy_templates/writers/adml_writer.py b/tools/grit/grit/format/policy_templates/writers/adml_writer.py
index a518a2fbb68caacbfe27fb8fe1bb46275d862ae1..d2f476f9d7bb95b3b82ddba0bde39bfb5dbacf7c 100644
--- a/tools/grit/grit/format/policy_templates/writers/adml_writer.py
+++ b/tools/grit/grit/format/policy_templates/writers/adml_writer.py
@@ -6,12 +6,12 @@ from xml.dom import minidom
from grit.format.policy_templates.writers import xml_formatted_writer
-def GetWriter(config, messages):
+def GetWriter(config):
'''Factory method for instanciating the ADMLWriter. Every Writer needs a
GetWriter method because the TemplateFormatter uses this method to
instantiate a Writer.
'''
- return ADMLWriter(['win'], config, messages)
+ return ADMLWriter(['win'], config)
class ADMLWriter(xml_formatted_writer.XMLFormattedWriter):
@@ -132,7 +132,7 @@ class ADMLWriter(xml_formatted_writer.XMLFormattedWriter):
the ADMX file but not related to any specific Policy-Group or Policy.
'''
self._AddString(string_table_elem, self.config['win_supported_os'],
- self.messages[self.config['win_supported_os_msg']])
+ self.messages['win_supported_winxpsp2']['text'])
if build == 'chrome':
self._AddString(string_table_elem, self.config['win_category_path'][0],
'Google')

Powered by Google App Engine
This is Rietveld 408576698