blob: 1fc092ffe81f5e78b98985c420be29b8d6463cb9 [file] [log] [blame]
# Copyright 2013 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_measurement
class ProfileCreator(page_measurement.PageMeasurement):
"""Base class for an object that constructs a Chrome profile."""
def __init__(self):
super(ProfileCreator, self).__init__()
self._page_set = None
@property
def page_set(self):
return self._page_set
def MeasurePage(self, _, tab, results):
pass