Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: chrome/browser/apps/browser_context_keyed_service_factories.cc

Issue 2789253003: Add chrome/browser/apps/BUILD.gn and move Chrome-specific code there (Closed)
Patch Set: rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 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 "chrome/browser/apps/browser_context_keyed_service_factories.h"
6
7 #include "apps/browser_context_keyed_service_factories.h"
8 #include "chrome/browser/apps/app_load_service_factory.h"
9 #include "chrome/browser/apps/shortcut_manager_factory.h"
10 #include "content/public/browser/browser_context.h"
11
12 namespace chrome_apps {
13
14 void EnsureBrowserContextKeyedServiceFactoriesBuilt() {
15 apps::EnsureBrowserContextKeyedServiceFactoriesBuilt();
16 AppShortcutManagerFactory::GetInstance();
17 apps::AppLoadServiceFactory::GetInstance();
18 }
19
20 void NotifyApplicationTerminating(content::BrowserContext* browser_context) {
21 apps::NotifyApplicationTerminating(browser_context);
22 }
23
24 } // namespace chrome_apps
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698