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

Side by Side Diff: tools/perf/page_sets/PRESUBMIT.py

Issue 319813004: [Telemetry] Update copyright header style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove stray change Created 6 years, 6 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
« no previous file with comments | « tools/perf/measurements/smoothness.py ('k') | tools/perf/page_sets/__init__.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 import os 5 import os
6 import re 6 import re
7 import sys 7 import sys
8 8
9 9
10 def LoadSupport(input_api): 10 def LoadSupport(input_api):
11 if 'cloud_storage' not in globals(): 11 if 'cloud_storage' not in globals():
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 return input_api.AffectedFiles(file_filter=_IsNewJsonPageSet) 128 return input_api.AffectedFiles(file_filter=_IsNewJsonPageSet)
129 129
130 def CheckChangeOnUpload(input_api, output_api): 130 def CheckChangeOnUpload(input_api, output_api):
131 results = _SyncFilesToCloud(input_api, output_api) 131 results = _SyncFilesToCloud(input_api, output_api)
132 return results 132 return results
133 133
134 134
135 def CheckChangeOnCommit(input_api, output_api): 135 def CheckChangeOnCommit(input_api, output_api):
136 results = _VerifyFilesInCloud(input_api, output_api) 136 results = _VerifyFilesInCloud(input_api, output_api)
137 return results 137 return results
OLDNEW
« no previous file with comments | « tools/perf/measurements/smoothness.py ('k') | tools/perf/page_sets/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698