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

Side by Side Diff: remoting/tools/remove_official_branding.py

Issue 11359035: Revert 165605 - Fix branding in chromoting string resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/resources/string_resources.grd ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:mergeinfo
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Replaces "Chrome Remote Desktop" with "Chromoting" in GRD files""" 6 """Replaces "Chrome Remote Desktop" with "Chromoting" in GRD files"""
7 7
8 import sys 8 import sys
9 from optparse import OptionParser 9 from optparse import OptionParser
10 import xml.dom.minidom as minidom 10 import xml.dom.minidom as minidom
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 parser = OptionParser(usage=usage) 43 parser = OptionParser(usage=usage)
44 options, args = parser.parse_args() 44 options, args = parser.parse_args()
45 if len(args) != 2: 45 if len(args) != 2:
46 parser.error('two positional arguments expected') 46 parser.error('two positional arguments expected')
47 47
48 return remove_official_branding(args[0], args[1]) 48 return remove_official_branding(args[0], args[1])
49 49
50 if __name__ == '__main__': 50 if __name__ == '__main__':
51 sys.exit(main()) 51 sys.exit(main())
52 52
OLDNEW
« no previous file with comments | « remoting/resources/string_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698