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

Side by Side Diff: chrome/browser/chromeos/settings/device_oauth2_token_service_factory.h

Issue 12647008: Refactor OAuth2TokenService to have profile- and device-based implementations. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: move function to minimize diff Created 7 years, 9 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 2013 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_CHROMEOS_SETTINGS_DEVICE_OAUTH2_TOKEN_SERVICE_FACTORY_H_
6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_OAUTH2_TOKEN_SERVICE_FACTORY_H_
7
8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "chrome/browser/chromeos/settings/device_oauth2_token_service.h"
11
12 namespace base {
13 template <typename T> struct DefaultLazyInstanceTraits;
14 }
15
16 namespace chromeos {
17
18 class DeviceOAuth2TokenServiceFactory {
19 public:
20 // Returns the instance of the DeviceOAuth2TokenService singleton.
21 static DeviceOAuth2TokenService* Get();
22
23 private:
24 DeviceOAuth2TokenServiceFactory();
25 virtual ~DeviceOAuth2TokenServiceFactory();
26 friend struct base::DefaultLazyInstanceTraits<
Andrew T Wilson (Slow) 2013/03/19 19:58:44 This is fine, but consider moving it to the top of
David Roche 2013/03/21 00:12:02 Done.
27 chromeos::DeviceOAuth2TokenServiceFactory>;
28
29 DeviceOAuth2TokenService* GetImpl();
30
31 scoped_ptr<DeviceOAuth2TokenService> device_oauth2_token_service_;
32
33 DISALLOW_COPY_AND_ASSIGN(DeviceOAuth2TokenServiceFactory);
34 };
35
36 } // namespace chromeos
37
38 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_DEVICE_OAUTH2_TOKEN_SERVICE_FACTORY_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698