• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_measurement
6
7class ProfileCreator(page_measurement.PageMeasurement):
8  """Base class for an object that constructs a Chrome profile."""
9
10  def __init__(self):
11    super(ProfileCreator, self).__init__()
12    self._page_set = None
13
14  @property
15  def page_set(self):
16    return self._page_set
17
18  def MeasurePage(self, _, tab, results):
19    pass