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

Unified Diff: tools/perf/page_sets/memory_infra_top_10_mobile_story.py

Issue 1936493002: Memory Infra: Remove memory.top_10_mobile benchmark (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase (again) Created 4 years, 8 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
« no previous file with comments | « tools/perf/benchmarks/memory_infra.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/memory_infra_top_10_mobile_story.py
diff --git a/tools/perf/page_sets/memory_infra_top_10_mobile_story.py b/tools/perf/page_sets/memory_infra_top_10_mobile_story.py
deleted file mode 100644
index 52bcf90dfd1ea89b48b5f236b86f827e6a2d4370..0000000000000000000000000000000000000000
--- a/tools/perf/page_sets/memory_infra_top_10_mobile_story.py
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import logging
-
-from page_sets import top_10_mobile
-from telemetry import story
-
-
-DUMP_WAIT_TIME = 3
-
-
-class MemoryInfraTop10MobilePage(top_10_mobile.Top10MobilePage):
-
- def RunPageInteractions(self, action_runner):
- action_runner.tab.WaitForDocumentReadyStateToBeComplete()
- action_runner.Wait(1) # See crbug.com/540022#c17.
- with action_runner.CreateInteraction('foreground'):
- action_runner.Wait(DUMP_WAIT_TIME)
- action_runner.ForceGarbageCollection()
- action_runner.Wait(DUMP_WAIT_TIME)
- if not action_runner.tab.browser.DumpMemory():
- logging.error('Unable to get a memory dump for %s.', self.name)
-
-
-class MemoryInfraTop10MobilePageSet(story.StorySet):
-
- """ Top 10 mobile sites for memory measurements """
-
- def __init__(self):
- super(MemoryInfraTop10MobilePageSet, self).__init__(
- archive_data_file='data/top_10_mobile.json',
- cloud_storage_bucket=story.PARTNER_BUCKET)
-
- for url in top_10_mobile.URL_LIST:
- self.AddStory(MemoryInfraTop10MobilePage(url, self, False))
« no previous file with comments | « tools/perf/benchmarks/memory_infra.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698