| // Copyright 2014 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "extensions/shell/browser/shell_browser_context_keyed_service_factories.h" |
| |
| #include "extensions/browser/updater/update_service_factory.h" |
| |
| namespace extensions { |
| namespace shell { |
| |
| void EnsureBrowserContextKeyedServiceFactoriesBuilt() { |
| // TODO(rockot): Remove this once UpdateService is supported across all |
| // extensions embedders (and namely chrome.) |
| UpdateServiceFactory::GetInstance(); |
| } |
| |
| } // namespace shell |
| } // namespace extensions |