summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorhartmanng@chromium.org <hartmanng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-15 20:19:55 +0000
committerhartmanng@chromium.org <hartmanng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-15 20:19:55 +0000
commit896443ab2572df762937af04661eec3305c83434 (patch)
tree42401696a6d9b4c81fdb7eeed00ac804985d2e34 /tools
parentdc0973937acc74340adba60e690d016acad041ff (diff)
downloadchromium_src-896443ab2572df762937af04661eec3305c83434.zip
chromium_src-896443ab2572df762937af04661eec3305c83434.tar.gz
chromium_src-896443ab2572df762937af04661eec3305c83434.tar.bz2
Fix scrolling_benchmark's AddOptions()
In https://codereview.chromium.org/11273081, the call to AddOptions() from multi_page_benchmark_runner.py was renamed to AddCommandLineOptions(). scrolling_benchmark.py wasn't updated, causing a crash this morning. NOTRY=true BUG=None Review URL: https://chromiumcodereview.appspot.com/11416010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168006 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/perf_tools/scrolling_benchmark.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/perf_tools/scrolling_benchmark.py b/tools/perf/perf_tools/scrolling_benchmark.py
index 5de0406..cf1c944 100644
--- a/tools/perf/perf_tools/scrolling_benchmark.py
+++ b/tools/perf/perf_tools/scrolling_benchmark.py
@@ -68,7 +68,7 @@ class ScrollingBenchmark(multi_page_benchmark.MultiPageBenchmark):
def __init__(self):
super(ScrollingBenchmark, self).__init__()
- def AddOptions(self, parser):
+ def AddCommandLineOptions(self, parser):
parser.add_option('--no-gpu-benchmarking-extension', action='store_true',
dest='no_gpu_benchmarking_extension',
help='Disable the chrome.gpuBenchmarking extension.')