| Index: tools/perf/profile_creators/profile_extender.py | 
| diff --git a/tools/perf/profile_creators/profile_creator.py b/tools/perf/profile_creators/profile_extender.py | 
| similarity index 92% | 
| rename from tools/perf/profile_creators/profile_creator.py | 
| rename to tools/perf/profile_creators/profile_extender.py | 
| index c67e5bdae062c889d570f4405619d9b77e49af77..fe0ed3aa6ffd378efadb6cbd92989f102e967ce8 100644 | 
| --- a/tools/perf/profile_creators/profile_creator.py | 
| +++ b/tools/perf/profile_creators/profile_extender.py | 
| @@ -2,11 +2,11 @@ | 
| # Use of this source code is governed by a BSD-style license that can be | 
| # found in the LICENSE file. | 
|  | 
| -class ProfileCreator(object): | 
| +class ProfileExtender(object): | 
| """Abstract base class for an object that constructs a Chrome profile.""" | 
|  | 
| def Run(self, options): | 
| -    """Creates the profile. | 
| +    """Creates or extends the profile. | 
|  | 
| |options| is an instance of BrowserFinderOptions. When subclass | 
| implementations of this method inevitably attempt to find and launch a | 
|  |