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)) |