1# Copyright 2013 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
5from telemetry.page import page_test
6
7
8class ProfileCreator(page_test.PageTest):
9  """Base class for an object that constructs a Chrome profile."""
10
11  def __init__(self):
12    super(ProfileCreator, self).__init__()
13    self._page_set = None
14
15  @property
16  def page_set(self):
17    return self._page_set
18
19  def ValidateAndMeasurePage(self, _, tab, results):
20    pass
21