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

Unified Diff: tools/grit/grit/format/policy_templates/writers/template_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/template_writer.py
diff --git a/tools/grit/grit/format/policy_templates/writers/template_writer.py b/tools/grit/grit/format/policy_templates/writers/template_writer.py
index ecff851832e4306dde07b37624c54c9ce7a7515f..539953a2fc06ccc6cd80fa34429891de2eb7d04d 100644
--- a/tools/grit/grit/format/policy_templates/writers/template_writer.py
+++ b/tools/grit/grit/format/policy_templates/writers/template_writer.py
@@ -11,7 +11,7 @@ class TemplateWriter(object):
The methods of this class will be called by PolicyTemplateGenerator.
'''
- def __init__(self, platforms, config, messages):
+ def __init__(self, platforms, config):
'''Initializes a TemplateWriter object.
Args:
@@ -31,7 +31,6 @@ class TemplateWriter(object):
'''
self.platforms = platforms
self.config = config
- self.messages = messages
def IsDeprecatedPolicySupported(self, policy):
'''Checks if the given deprecated policy is supported by the writer.
@@ -104,10 +103,12 @@ class TemplateWriter(object):
Returns:
Generated output for the passed template definition.
'''
+ self.messages = template['messages']
self.Init()
- template = self.PreprocessPolicies(template)
+ template['policy_definitions'] = \
+ self.PreprocessPolicies(template['policy_definitions'])
self.BeginTemplate()
- for policy in template:
+ for policy in template['policy_definitions']:
if policy['type'] == 'group':
child_policies = self._GetPoliciesForWriter(policy)
if child_policies:

Powered by Google App Engine
This is Rietveld 408576698