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 profile_creators import extensions_profile_creator
6
7
8class ThemeProfileCreator(extensions_profile_creator.ExtensionsProfileCreator):
9  """Install a theme."""
10
11  def __init__(self):
12    super(ThemeProfileCreator, self).__init__()
13
14    # Marc Ecko theme.
15    self._theme_to_install = "opjonmehjfmkejjifhhknofdnacklmjk"
16