blob: 7666a76fe42dab55344c6eeaac778c2ed28dee4b [file] [log] [blame]
# Copyright 2014 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.
from telemetry.page import page as page_module
from telemetry.page import page_set as page_set_module
class BloatPage(page_module.Page):
def __init__(self, url, page_set):
super(BloatPage, self).__init__(url=url, page_set=page_set)
class BloatPageSet(page_set_module.PageSet):
""" Bloat page_cycler benchmark """
def __init__(self):
super(BloatPageSet, self).__init__(
# pylint: disable=C0301
serving_dirs=set(['../../../../data/page_cycler/bloat']),
bucket=page_set_module.PUBLIC_BUCKET)
self.AddPage(BloatPage(
'file://../../../../data/page_cycler/bloat/gmail_load_cleardot/',
self))