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

Unified Diff: tools/perf/profile_creators/profile_extender.py

Issue 1124543006: Telemetry: Update exception handling in FastNavigationProfileExtender. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments from nednguyen, dtu. Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: tools/perf/profile_creators/profile_extender.py
diff --git a/tools/perf/profile_creators/profile_extender.py b/tools/perf/profile_creators/profile_extender.py
index b1dccfa68bb897cbcf05a852af9dd2ebee112306..a623a94ef34ac06ee9440008695ef0212fa698e5 100644
--- a/tools/perf/profile_creators/profile_extender.py
+++ b/tools/perf/profile_creators/profile_extender.py
@@ -87,6 +87,13 @@ class ProfileExtender(object):
self._browser.Close()
self._browser = None
+ def VerifyProfileWasExtended(self):
nednguyen 2015/05/12 16:07:43 Putting this API here is strange since there is no
erikchen 2015/05/12 18:43:48 Sure.
+ """Verifies that the profile was correctly extended.
+
+ Can be overridden by subclasses.
+ """
+ pass
+
def FetchWebPageReplayArchives(self):
"""Fetches the web page replay archives.

Powered by Google App Engine
This is Rietveld 408576698