1# Copyright 2014 The Chromium Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4# pylint: disable=W0401,W0614 5from telemetry.page.actions.all_page_actions import * 6from telemetry.page import page as page_module 7from telemetry.page import page_set as page_set_module 8 9 10class BloatPage(page_module.Page): 11 12 def __init__(self, url, page_set): 13 super(BloatPage, self).__init__(url=url, page_set=page_set) 14 15 16class BloatPageSet(page_set_module.PageSet): 17 18 """ Bloat page_cycler benchmark """ 19 20 def __init__(self): 21 super(BloatPageSet, self).__init__( 22 # pylint: disable=C0301 23 serving_dirs=set(['../../../../data/page_cycler/bloat']), 24 bucket=page_set_module.PUBLIC_BUCKET) 25 26 self.AddPage(BloatPage( 27 'file://../../../../data/page_cycler/bloat/gmail_load_cleardot/', 28 self)) 29