| Index: tools/grit/grit/format/policy_templates/writers/reg_writer.py
 | 
| diff --git a/tools/grit/grit/format/policy_templates/writers/reg_writer.py b/tools/grit/grit/format/policy_templates/writers/reg_writer.py
 | 
| index 6032c48d3af39e224bd13297a4317689e5972146..4ff5508a2559971bad97773242801ba5579aa733 100644
 | 
| --- a/tools/grit/grit/format/policy_templates/writers/reg_writer.py
 | 
| +++ b/tools/grit/grit/format/policy_templates/writers/reg_writer.py
 | 
| @@ -7,12 +7,12 @@ from xml.dom import minidom
 | 
|  from grit.format.policy_templates.writers import template_writer
 | 
|  
 | 
|  
 | 
| -def GetWriter(config, messages):
 | 
| +def GetWriter(config):
 | 
|    '''Factory method for creating RegWriter objects.
 | 
|    See the constructor of TemplateWriter for description of
 | 
|    arguments.
 | 
|    '''
 | 
| -  return RegWriter(['win'], config, messages)
 | 
| +  return RegWriter(['win'], config)
 | 
|  
 | 
|  
 | 
|  class RegWriter(template_writer.TemplateWriter):
 | 
| 
 |