| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """ | 5 """ |
| 6 Presubmit for Chromium HTML/CSS/JS resources. See chrome/browser/PRESUBMIT.py. | 6 Presubmit for Chromium HTML/CSS/JS resources. See chrome/browser/PRESUBMIT.py. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 import regex_check | 9 import regex_check |
| 10 | 10 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 if error: | 36 if error: |
| 37 errors.append(error) | 37 errors.append(error) |
| 38 | 38 |
| 39 if errors: | 39 if errors: |
| 40 abs_local_path = f.AbsoluteLocalPath() | 40 abs_local_path = f.AbsoluteLocalPath() |
| 41 file_indicator = 'Found resources style issues in %s' % abs_local_path | 41 file_indicator = 'Found resources style issues in %s' % abs_local_path |
| 42 prompt_msg = file_indicator + '\n\n' + '\n'.join(errors) + '\n' | 42 prompt_msg = file_indicator + '\n\n' + '\n'.join(errors) + '\n' |
| 43 results.append(self.output_api.PresubmitPromptWarning(prompt_msg)) | 43 results.append(self.output_api.PresubmitPromptWarning(prompt_msg)) |
| 44 | 44 |
| 45 return results | 45 return results |
| OLD | NEW |