Chromium Code Reviews| Index: chrome/browser/sync/sessions/sync_sessions_web_contents_router_factory.cc |
| diff --git a/chrome/browser/sync/sessions/sync_sessions_web_contents_router_factory.cc b/chrome/browser/sync/sessions/sync_sessions_web_contents_router_factory.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..824fc24831d20a575e5d25f6e3cdb10a2c5b71ad |
| --- /dev/null |
| +++ b/chrome/browser/sync/sessions/sync_sessions_web_contents_router_factory.cc |
| @@ -0,0 +1,38 @@ |
| +// Copyright 2017 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 "chrome/browser/sync/sessions/sync_sessions_web_contents_router_factory.h" |
| + |
| +#include "base/logging.h" |
| +#include "base/memory/singleton.h" |
| +#include "chrome/browser/profiles/profile.h" |
| +#include "chrome/browser/sync/sessions/sync_sessions_web_contents_router.h" |
| +#include "components/keyed_service/content/browser_context_dependency_manager.h" |
| + |
| +namespace sync_sessions { |
|
Nicolas Zea
2017/03/16 19:57:43
nit: newline below
Patrick Noland
2017/03/17 00:20:10
Done.
|
| +// static |
| +SyncSessionsWebContentsRouter* |
| +SyncSessionsWebContentsRouterFactory::GetForProfile(Profile* profile) { |
| + return static_cast<SyncSessionsWebContentsRouter*>( |
| + GetInstance()->GetServiceForBrowserContext(profile, true)); |
| +} |
| + |
| +// static |
| +SyncSessionsWebContentsRouterFactory* |
| +SyncSessionsWebContentsRouterFactory::GetInstance() { |
| + return base::Singleton<SyncSessionsWebContentsRouterFactory>::get(); |
| +} |
| + |
| +SyncSessionsWebContentsRouterFactory::SyncSessionsWebContentsRouterFactory() |
| + : BrowserContextKeyedServiceFactory( |
| + "SyncSessionsWebContentsRouter", |
| + BrowserContextDependencyManager::GetInstance()) {} |
| + |
| +SyncSessionsWebContentsRouterFactory::~SyncSessionsWebContentsRouterFactory() {} |
| + |
| +KeyedService* SyncSessionsWebContentsRouterFactory::BuildServiceInstanceFor( |
| + content::BrowserContext* context) const { |
| + return new SyncSessionsWebContentsRouter(static_cast<Profile*>(context)); |
| +} |
| + |
| +} // namespace sync_sessions |