| Index: tools/perf/profile_creators/profile_creator.py
|
| diff --git a/tools/perf/profile_creators/profile_creator.py b/tools/perf/profile_creators/profile_creator.py
|
| deleted file mode 100644
|
| index c67e5bdae062c889d570f4405619d9b77e49af77..0000000000000000000000000000000000000000
|
| --- a/tools/perf/profile_creators/profile_creator.py
|
| +++ /dev/null
|
| @@ -1,23 +0,0 @@
|
| -# 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.
|
| -
|
| -class ProfileCreator(object):
|
| - """Abstract base class for an object that constructs a Chrome profile."""
|
| -
|
| - def Run(self, options):
|
| - """Creates the profile.
|
| -
|
| - |options| is an instance of BrowserFinderOptions. When subclass
|
| - implementations of this method inevitably attempt to find and launch a
|
| - browser, they should pass |options| to the relevant methods.
|
| -
|
| - Several properties of |options| might require direct manipulation by
|
| - subclasses. These are:
|
| - |options.output_profile_path|: The path at which the profile should be
|
| - created.
|
| - |options.browser_options.profile_dir|: If this property is None, then a
|
| - new profile is created. Otherwise, the existing profile is appended on
|
| - to.
|
| - """
|
| - raise NotImplementedError()
|
|
|