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

Unified Diff: tools/perf/measurements/no_op.py

Issue 714273004: mac: Expose keychain access frequency to Telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mock_keychain_sleep
Patch Set: Add a common subclass to measurements. Created 6 years, 1 month 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/measurements/no_op.py
diff --git a/tools/perf/measurements/no_op.py b/tools/perf/measurements/no_op.py
index e4442b83971ff4b7f4fd16cd636e183ac76a3b96..a4d130d6b4850747e55bb8135ad6c4cb7b74e7f2 100644
--- a/tools/perf/measurements/no_op.py
+++ b/tools/perf/measurements/no_op.py
@@ -2,11 +2,11 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-from telemetry.page import page_test
+from measurements import PageTestMeasurement
-class NoOp(page_test.PageTest):
+class NoOp(PageTestMeasurement):
def __init__(self):
super(NoOp, self).__init__('RunPageInteractions')
def ValidateAndMeasurePage(self, page, tab, results):
- pass
+ super(NoOp, self).ValidateAndMeasurePage(page, tab, results)

Powered by Google App Engine
This is Rietveld 408576698