Remove unused parameter.
[chromium-blink-merge.git] / extensions / shell / browser / shell_browser_context_keyed_service_factories.cc
blob9d3767f2fae302a4861fae2ac747d6e28e250263
1 // Copyright 2014 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 #include "extensions/shell/browser/shell_browser_context_keyed_service_factories.h"
7 #include "extensions/browser/updater/update_service_factory.h"
8 #include "extensions/shell/browser/api/identity/identity_api.h"
10 namespace extensions {
11 namespace shell {
13 void EnsureBrowserContextKeyedServiceFactoriesBuilt() {
14 IdentityAPI::GetFactoryInstance();
16 // TODO(rockot): Remove this once UpdateService is supported across all
17 // extensions embedders (and namely chrome.)
18 UpdateServiceFactory::GetInstance();
21 } // namespace shell
22 } // namespace extensions