| Index: chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.cc
|
| diff --git a/chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.cc b/chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d7d047c9d264a4e98bb1d2c1e6db8f146d29b5e3
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/webui/ntp/ntp_resource_cache_factory.cc
|
| @@ -0,0 +1,36 @@
|
| +// Copyright (c) 2011 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/ui/webui/ntp/ntp_resource_cache_factory.h"
|
| +
|
| +#include "chrome/browser/profiles/profile.h"
|
| +#include "chrome/browser/profiles/profile_dependency_manager.h"
|
| +#include "chrome/browser/ui/webui/ntp/ntp_resource_cache.h"
|
| +
|
| +// static
|
| +NTPResourceCache* NTPResourceCacheFactory::GetForProfile(Profile* profile) {
|
| + return static_cast<NTPResourceCache*>(
|
| + GetInstance()->GetServiceForProfile(profile, true));
|
| +}
|
| +
|
| +// static
|
| +NTPResourceCacheFactory* NTPResourceCacheFactory::GetInstance() {
|
| + return Singleton<NTPResourceCacheFactory>::get();
|
| +}
|
| +
|
| +NTPResourceCacheFactory::NTPResourceCacheFactory()
|
| + : ProfileKeyedServiceFactory(
|
| + ProfileDependencyManager::GetInstance())
|
| +{}
|
| +
|
| +NTPResourceCacheFactory::~NTPResourceCacheFactory() {}
|
| +
|
| +ProfileKeyedService* NTPResourceCacheFactory::BuildServiceInstanceFor(
|
| + Profile* profile) const {
|
| + return new NTPResourceCache(profile);
|
| +}
|
| +
|
| +bool NTPResourceCacheFactory::ServiceRedirectedInIncognito() {
|
| + return true;
|
| +}
|
|
|