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

Side by Side Diff: content/app/strings/rm_old_file.py

Issue 423613003: Move strings from webkit/ to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: REBASE Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 """Removes an old grit header file."""
7
8 # TODO(tfarina): Remove this file in two-three weeks.
9
10 import os
11 import sys
12
13
14 def Main(file_to_remove):
15 if os.path.exists(file_to_remove):
16 os.remove(file_to_remove)
17
18 if __name__ == '__main__':
19 sys.exit(Main(sys.argv[1]))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698