Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 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/extensions/api/push_messaging/push_messaging_api_factor y.h" | |
| 6 | |
| 7 #include "chrome/browser/extensions/api/push_messaging/push_messaging_api.h" | |
| 8 #include "chrome/browser/extensions/extension_system_factory.h" | |
| 9 #include "chrome/browser/profiles/profile_dependency_manager.h" | |
| 10 | |
| 11 namespace extensions { | |
| 12 | |
| 13 // static | |
| 14 PushMessagingAPI* PushMessagingAPIFactory::GetForProfile( | |
| 15 Profile* profile) { | |
| 16 return static_cast<PushMessagingAPI*>( | |
| 17 GetInstance()->GetServiceForProfile(profile, true)); | |
| 18 } | |
| 19 | |
| 20 // static | |
| 21 PushMessagingAPIFactory* PushMessagingAPIFactory::GetInstance() { | |
| 22 return Singleton<PushMessagingAPIFactory>::get(); | |
| 23 } | |
| 24 | |
| 25 PushMessagingAPIFactory::PushMessagingAPIFactory() | |
| 26 : ProfileKeyedServiceFactory("PushMessagingAPI", | |
| 27 ProfileDependencyManager::GetInstance()) { | |
| 28 DependsOn(extensions::ExtensionSystemFactory::GetInstance()); | |
|
Yoyo Zhou
2012/12/10 20:06:01
According to crbug.com/153827, this should also de
akalin
2012/12/10 20:37:12
Cool, yeah, that should fix that bug.
Joe Thomas
2012/12/10 22:43:58
Done.
| |
| 29 } | |
| 30 | |
| 31 PushMessagingAPIFactory::~PushMessagingAPIFactory() { | |
| 32 } | |
| 33 | |
| 34 ProfileKeyedService* PushMessagingAPIFactory::BuildServiceInstanceFor( | |
| 35 Profile* profile) const { | |
| 36 return new PushMessagingAPI(profile); | |
| 37 } | |
| 38 | |
| 39 bool PushMessagingAPIFactory::ServiceIsCreatedWithProfile() const { | |
| 40 return true; | |
| 41 } | |
| 42 | |
| 43 bool PushMessagingAPIFactory::ServiceIsNULLWhileTesting() const { | |
| 44 return true; | |
| 45 } | |
| 46 | |
| 47 } // namespace extensions | |
| OLD | NEW |