Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Side by Side Diff: chrome/browser/search/one_google_bar/one_google_bar_service_factory.h

Issue 2811353002: Local NTP: Introduce OneGoogleBarService (Closed)
Patch Set: fix memleak Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 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 #ifndef CHROME_BROWSER_SEARCH_ONE_GOOGLE_BAR_ONE_GOOGLE_BAR_SERVICE_FACTORY_H_
6 #define CHROME_BROWSER_SEARCH_ONE_GOOGLE_BAR_ONE_GOOGLE_BAR_SERVICE_FACTORY_H_
7
8 #include "base/macros.h"
9 #include "base/memory/singleton.h"
10 #include "components/keyed_service/content/browser_context_keyed_service_factory .h"
11
12 class OneGoogleBarService;
13 class Profile;
14
15 class OneGoogleBarServiceFactory : public BrowserContextKeyedServiceFactory {
16 public:
17 // Returns the OneGoogleBarService for |profile|.
18 static OneGoogleBarService* GetForProfile(Profile* profile);
19
20 static OneGoogleBarServiceFactory* GetInstance();
21
22 private:
23 friend struct base::DefaultSingletonTraits<OneGoogleBarServiceFactory>;
24
25 OneGoogleBarServiceFactory();
26 ~OneGoogleBarServiceFactory() override;
27
28 // Overridden from BrowserContextKeyedServiceFactory:
29 KeyedService* BuildServiceInstanceFor(
30 content::BrowserContext* profile) const override;
31
32 DISALLOW_COPY_AND_ASSIGN(OneGoogleBarServiceFactory);
33 };
34
35 #endif // CHROME_BROWSER_SEARCH_ONE_GOOGLE_BAR_ONE_GOOGLE_BAR_SERVICE_FACTORY_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698