[email protected] | c4bdf9d | 2014-03-19 11:50:05 | [diff] [blame] | 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. | ||||
4 | |||||
5 | #include "apps/browser_context_keyed_service_factories.h" | ||||
6 | |||||
7 | #include "apps/app_load_service_factory.h" | ||||
8 | #include "apps/app_restore_service_factory.h" | ||||
[email protected] | 21d3f3a | 2014-08-20 09:39:55 | [diff] [blame^] | 9 | #include "extensions/browser/app_window/app_window_geometry_cache.h" |
[email protected] | c4bdf9d | 2014-03-19 11:50:05 | [diff] [blame] | 10 | |
11 | namespace apps { | ||||
12 | |||||
13 | void EnsureBrowserContextKeyedServiceFactoriesBuilt() { | ||||
14 | apps::AppLoadServiceFactory::GetInstance(); | ||||
15 | apps::AppRestoreServiceFactory::GetInstance(); | ||||
[email protected] | 21d3f3a | 2014-08-20 09:39:55 | [diff] [blame^] | 16 | extensions::AppWindowGeometryCache::Factory::GetInstance(); |
[email protected] | c4bdf9d | 2014-03-19 11:50:05 | [diff] [blame] | 17 | } |
18 | |||||
19 | } // namespace apps |