// Copyright 2013 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/google_apis/drive_notification_manager_factory.h" #include "chrome/browser/google_apis/drive_notification_manager.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/sync/profile_sync_service.h" #include "chrome/browser/sync/profile_sync_service_factory.h" #include "components/browser_context_keyed_service/browser_context_dependency_manager.h" namespace google_apis { // static DriveNotificationManager* DriveNotificationManagerFactory::GetForProfile(Profile* profile) { if (!ProfileSyncService::IsSyncEnabled()) return NULL; return static_cast( GetInstance()->GetServiceForBrowserContext(profile, true)); } // static DriveNotificationManagerFactory* DriveNotificationManagerFactory::GetInstance() { return Singleton::get(); } DriveNotificationManagerFactory::DriveNotificationManagerFactory() : BrowserContextKeyedServiceFactory( "DriveNotificationManager", BrowserContextDependencyManager::GetInstance()) { DependsOn(ProfileSyncServiceFactory::GetInstance()); } DriveNotificationManagerFactory::~DriveNotificationManagerFactory() {} BrowserContextKeyedService* DriveNotificationManagerFactory::BuildServiceInstanceFor( content::BrowserContext* profile) const { return new DriveNotificationManager(static_cast(profile)); } } // namespace google_apis