| Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline.py
|
| index 9482025ce2de81c68fda5c6e018dddb9032781a6..c5e840841b7d7994fc48b50b31c56912384d3daa 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline.py
|
| @@ -175,6 +175,13 @@ class TestBaselineSet(object):
|
| '\n '.join('%s: %s, %s' % triple for triple in self._iter_combinations()) +
|
| '>')
|
|
|
| + def test_prefixes(self):
|
| + return sorted(self._test_prefix_map)
|
| +
|
| + def build_port_pairs(self, test_prefix):
|
| + # Return a copy in case the caller modifies the returned list.
|
| + return list(self._test_prefix_map[test_prefix])
|
| +
|
| def add(self, test_prefix, build, port_name=None):
|
| """Adds an entry for baselines to download for some set of tests.
|
|
|
|
|