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
{
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();
22 } // namespace extensions