[M108 Migration][Callback] Bring up ewk callbacks which are related with page loading
[platform/framework/web/chromium-efl.git] / apps / browser_context_keyed_service_factories.cc
1 // Copyright 2014 The Chromium Authors
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_lifetime_monitor_factory.h"
8 #include "apps/app_restore_service.h"
9 #include "apps/app_restore_service_factory.h"
10 #include "apps/saved_files_service.h"
11 #include "apps/saved_files_service_factory.h"
12 #include "content/public/browser/browser_context.h"
13
14 namespace apps {
15
16 void EnsureBrowserContextKeyedServiceFactoriesBuilt() {
17   AppLifetimeMonitorFactory::GetInstance();
18   AppRestoreServiceFactory::GetInstance();
19 }
20
21 void NotifyApplicationTerminating(content::BrowserContext* browser_context) {
22   AppRestoreService* restore_service =
23       AppRestoreServiceFactory::GetForBrowserContext(browser_context);
24   CHECK(restore_service);
25   restore_service->OnApplicationTerminating();
26
27   SavedFilesService* saved_files_service =
28       SavedFilesServiceFactory::GetForBrowserContextIfExists(browser_context);
29   if (saved_files_service)
30     saved_files_service->OnApplicationTerminating();
31 }
32
33 }  // namespace apps