Delete chrome.mediaGalleriesPrivate because the functionality unique to it has since...
[chromium-blink-merge.git] / tools / perf / profile_creators / many_extensions_profile_creator.py
blob26cd32ad7ef3f2b7b0a54a368f99523ae47839f9
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 ManyExtensionsProfileCreator(
9 extensions_profile_creator.ExtensionsProfileCreator):
10 """Install many popular extensions."""
12 def __init__(self):
13 extensions_to_install = [
14 "nklfajnmfbchcceflgddnkignfheooic",
15 "keigpnkjljkelclbjbekcfnaomfodamj",
16 "fjnbnpbmkenffdnngjfgmeleoegfcffe",
17 "gighmmpiobklfepjocnamgkkbiglidom",
18 "oadboiipflhobonjjffjbfekfjcgkhco",
19 "elioihkkcdgakfbahdoddophfngopipi",
20 "fheoggkfdfchfphceeifdbepaooicaho",
21 "nkcpopggjcjkiicpenikeogioednjeac",
22 "ifohbjbgfchkkfhphahclmkpgejiplfo",
23 "kbmfpngjjgdllneeigpgjifpgocmfgmb",
24 "pdnfnkhpgegpcingjbfihlkjeighnddk",
25 "aapbdbdomjkkjkaonfhkkikfgjllcleb",
26 "fjbbjfdilbioabojmcplalojlmdngbjl",
27 "hdokiejnpimakedhajhdlcegeplioahd",
28 "ninpnjfmichdlipckmfacdjbpbkkbcfa",
29 "mgijmajocgfcbeboacabfgobmjgjcoja",
30 "ohjkicjidmohhfcjjlahfppkdblibkkb"]
32 super(ManyExtensionsProfileCreator, self).__init__(
33 extensions_to_install=extensions_to_install)