Chromium Code Reviews| Index: tools/telemetry/telemetry/page/page_test.py |
| diff --git a/tools/telemetry/telemetry/page/page_test.py b/tools/telemetry/telemetry/page/page_test.py |
| index 12f227f7879cfe6fec25cb0927225efbfe8e54de..dce73c0d27dfd5d2ac7bf7659b943161ace2ce55 100644 |
| --- a/tools/telemetry/telemetry/page/page_test.py |
| +++ b/tools/telemetry/telemetry/page/page_test.py |
| @@ -107,13 +107,14 @@ class PageTest(object): |
| """Override to customize if the test can be ran for the given page.""" |
| return True |
| - def WillRunPageSet(self, tab): |
| - """Override to do operations before the page set is navigated.""" |
| + def WillRunTest(self, tab): |
| + """Override to do operations before the page set(s) are navigated.""" |
| pass |
| - def DidRunPageSet(self, tab, results): |
| - """Override to do operations after page set is completed, but before browser |
| - is torn down.""" |
| + def DidRunTest(self, tab, results): |
| + """Override to do operations after all page set(s) are completed. |
| + |
| + This will occur before the browser is torn down.""" |
|
dennis_jeffrey
2013/07/12 21:36:18
put the closing """ on the next line down.
edmundyan
2013/07/12 22:10:21
Done.
|
| pass |
| def DidStartHTTPServer(self, tab): |