Make callers of CommandLine use it via the base:: namespace.
[chromium-blink-merge.git] / tools / perf / profile_creators / theme_profile_creator.py
bloba4d92fe3aa622cbff9a54d14ec8385427e0c224e
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.
5 from profile_creators import extensions_profile_creator
8 class ThemeProfileCreator(extensions_profile_creator.ExtensionsProfileCreator):
9 """Install a theme."""
11 def __init__(self):
12 # Marc Ecko theme.
13 theme_to_install = "opjonmehjfmkejjifhhknofdnacklmjk"
14 super(ThemeProfileCreator, self).__init__(theme_to_install=theme_to_install)