[Metrics] Make MetricsStateManager take a callback param to check if UMA is enabled.
[chromium-blink-merge.git] / chrome / browser / signin / signin_error_notifier_factory_ash.h
blob4512642ef34aef391d1dcd67672857ecdc9ded86
1 // Copyright 2014 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.
5 #ifndef CHROME_BROWSER_SIGNIN_SIGNIN_ERROR_NOTIFIER_FACTORY_ASH_H_
6 #define CHROME_BROWSER_SIGNIN_SIGNIN_ERROR_NOTIFIER_FACTORY_ASH_H_
8 #include "base/memory/singleton.h"
9 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
11 class SigninErrorNotifier;
12 class Profile;
14 // Singleton that owns all SigninErrorNotifiers and associates them with
15 // Profiles. Listens for the Profile's destruction notification and cleans up
16 // the associated SigninErrorNotifier.
17 class SigninErrorNotifierFactory : public BrowserContextKeyedServiceFactory {
18 public:
19 // Returns the instance of SigninErrorNotifier associated with this
20 // profile, creating one if none exists and the shell exists.
21 static SigninErrorNotifier* GetForProfile(Profile* profile);
23 // Returns an instance of the SigninErrorNotifierFactory singleton.
24 static SigninErrorNotifierFactory* GetInstance();
26 private:
27 friend struct DefaultSingletonTraits<SigninErrorNotifierFactory>;
29 SigninErrorNotifierFactory();
30 virtual ~SigninErrorNotifierFactory();
32 // BrowserContextKeyedServiceFactory:
33 virtual KeyedService* BuildServiceInstanceFor(
34 content::BrowserContext* profile) const OVERRIDE;
36 DISALLOW_COPY_AND_ASSIGN(SigninErrorNotifierFactory);
39 #endif // CHROME_BROWSER_SIGNIN_SIGNIN_ERROR_NOTIFIER_FACTORY_ASH_H_