Chromium Code Reviews| OLD | NEW | 
|---|---|
| 1 #!/usr/bin/python2.4 | 1 # Copyright 2011, Google Inc. | 
| 
 
Alexander Potapenko
2011/11/24 07:53:02
How about fixing the copyright year in the rest of
 
M-A Ruel
2011/11/27 21:26:02
I wasn't sure about them but I traced these files
 
 | |
| 2 # | |
| 3 # Copyright 2009, Google Inc. | |
| 4 # All rights reserved. | 2 # All rights reserved. | 
| 5 # | 3 # | 
| 6 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without | 
| 7 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are | 
| 8 # met: | 6 # met: | 
| 9 # | 7 # | 
| 10 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright | 
| 11 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. | 
| 12 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above | 
| 13 # copyright notice, this list of conditions and the following disclaimer | 11 # copyright notice, this list of conditions and the following disclaimer | 
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 443 | 441 | 
| 444 # Write this subdir | 442 # Write this subdir | 
| 445 self.WriteSubdir(cov_dir) | 443 self.WriteSubdir(cov_dir) | 
| 446 | 444 | 
| 447 # Write files in this subdir | 445 # Write files in this subdir | 
| 448 for cov_file in cov_dir.files.itervalues(): | 446 for cov_file in cov_dir.files.itervalues(): | 
| 449 self.WriteFile(cov_file) | 447 self.WriteFile(cov_file) | 
| 450 | 448 | 
| 451 # Write files in root directory | 449 # Write files in root directory | 
| 452 self.WriteRoot() | 450 self.WriteRoot() | 
| 453 | |
| OLD | NEW |