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

Side by Side Diff: ios/public/provider/chrome/browser/keyed_service_provider.cc

Issue 1164043002: [iOS] Add accessor for ProfileOAuth2TokenServiceIOS instance and factory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « ios/public/provider/chrome/browser/keyed_service_provider.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ios/public/provider/chrome/browser/keyed_service_provider.h" 5 #include "ios/public/provider/chrome/browser/keyed_service_provider.h"
6 6
7 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" 7 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
8 8
9 namespace ios { 9 namespace ios {
10 10
11 KeyedServiceProvider::KeyedServiceProvider() { 11 KeyedServiceProvider::KeyedServiceProvider() {
12 } 12 }
13 13
14 KeyedServiceProvider::~KeyedServiceProvider() { 14 KeyedServiceProvider::~KeyedServiceProvider() {
15 } 15 }
16 16
17 KeyedServiceBaseFactory* 17 KeyedServiceBaseFactory*
18 KeyedServiceProvider::GetProfileOAuth2TokenServiceFactory() { 18 KeyedServiceProvider::GetProfileOAuth2TokenServiceFactory() {
19 return nullptr; 19 return nullptr;
20 } 20 }
21 21
22 ProfileOAuth2TokenService* 22 ProfileOAuth2TokenService*
23 KeyedServiceProvider::GetProfileOAuth2TokenServiceForBrowserState( 23 KeyedServiceProvider::GetProfileOAuth2TokenServiceForBrowserState(
24 ChromeBrowserState* browser_state) { 24 ChromeBrowserState* browser_state) {
25 return nullptr; 25 return nullptr;
26 } 26 }
27 27
28 KeyedServiceBaseFactory*
29 KeyedServiceProvider::GetProfileOAuth2TokenServiceIOSFactory() {
30 return nullptr;
31 }
32
33 ProfileOAuth2TokenServiceIOS*
34 KeyedServiceProvider::GetProfileOAuth2TokenServiceIOSForBrowserState(
35 ChromeBrowserState* browser_state) {
36 return nullptr;
37 }
38
28 KeyedServiceBaseFactory* KeyedServiceProvider::GetSigninManagerFactory() { 39 KeyedServiceBaseFactory* KeyedServiceProvider::GetSigninManagerFactory() {
29 return nullptr; 40 return nullptr;
30 } 41 }
31 42
32 SigninManager* KeyedServiceProvider::GetSigninManagerForBrowserState( 43 SigninManager* KeyedServiceProvider::GetSigninManagerForBrowserState(
33 ChromeBrowserState* browser_state) { 44 ChromeBrowserState* browser_state) {
34 return nullptr; 45 return nullptr;
35 } 46 }
36 47
37 KeyedServiceBaseFactory* KeyedServiceProvider::GetAutofillWebDataFactory() { 48 KeyedServiceBaseFactory* KeyedServiceProvider::GetAutofillWebDataFactory() {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 KeyedServiceBaseFactory* KeyedServiceProvider::GetSyncServiceFactory() { 80 KeyedServiceBaseFactory* KeyedServiceProvider::GetSyncServiceFactory() {
70 return nullptr; 81 return nullptr;
71 } 82 }
72 83
73 sync_driver::SyncService* KeyedServiceProvider::GetSyncServiceForBrowserState( 84 sync_driver::SyncService* KeyedServiceProvider::GetSyncServiceForBrowserState(
74 ios::ChromeBrowserState* browser_state) { 85 ios::ChromeBrowserState* browser_state) {
75 return nullptr; 86 return nullptr;
76 } 87 }
77 88
78 } // namespace ios 89 } // namespace ios
OLDNEW
« no previous file with comments | « ios/public/provider/chrome/browser/keyed_service_provider.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698