| Index: chrome/browser/profiles/profile_statistics_factory.cc
|
| diff --git a/chrome/browser/profiles/profile_statistics_factory.cc b/chrome/browser/profiles/profile_statistics_factory.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b801acd431e1f4ae5942f22be6d9b8c0d5b4703b
|
| --- /dev/null
|
| +++ b/chrome/browser/profiles/profile_statistics_factory.cc
|
| @@ -0,0 +1,33 @@
|
| +// Copyright (c) 2016 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/profiles/profile_statistics_factory.h"
|
| +
|
| +#include "base/memory/singleton.h"
|
| +#include "chrome/browser/profiles/profile.h"
|
| +#include "chrome/browser/profiles/profile_statistics.h"
|
| +#include "components/keyed_service/content/browser_context_dependency_manager.h"
|
| +#include "content/public/browser/browser_thread.h"
|
| +
|
| +// static
|
| +ProfileStatistics* ProfileStatisticsFactory::GetForProfile(Profile* profile) {
|
| + return static_cast<ProfileStatistics*>(
|
| + GetInstance()->GetServiceForBrowserContext(profile, true));
|
| +}
|
| +
|
| +// static
|
| +ProfileStatisticsFactory* ProfileStatisticsFactory::GetInstance() {
|
| + return base::Singleton<ProfileStatisticsFactory>::get();
|
| +}
|
| +
|
| +ProfileStatisticsFactory::ProfileStatisticsFactory()
|
| + : BrowserContextKeyedServiceFactory("ProfileStatistics",
|
| + BrowserContextDependencyManager::GetInstance()) {
|
| +}
|
| +
|
| +KeyedService* ProfileStatisticsFactory::BuildServiceInstanceFor(
|
| + content::BrowserContext* context) const {
|
| + Profile* profile = Profile::FromBrowserContext(context);
|
| + return new ProfileStatistics(profile);
|
| +}
|
|
|