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

Unified Diff: ios/public/provider/chrome/browser/keyed_service_provider.h

Issue 1143323005: Refactor AO2TS to make it easier to componentize. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: works for all platforms commit e75a498951318d4deb65d40ce8b2def44cd5abc0 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 side-by-side diff with in-line comments
Download patch
Index: ios/public/provider/chrome/browser/keyed_service_provider.h
diff --git a/ios/public/provider/chrome/browser/keyed_service_provider.h b/ios/public/provider/chrome/browser/keyed_service_provider.h
index c5c7862fbd609ae0e1e7a124c7b096354abaf705..0b32cc650ec863bf66116e9acb78170a223e4b40 100644
--- a/ios/public/provider/chrome/browser/keyed_service_provider.h
+++ b/ios/public/provider/chrome/browser/keyed_service_provider.h
@@ -11,7 +11,7 @@
enum class ServiceAccessType;
class KeyedServiceBaseFactory;
-class ProfileOAuth2TokenServiceIOS;
+class ProfileOAuth2TokenService;
class SigninManager;
namespace autofill {
@@ -59,12 +59,12 @@ class KeyedServiceProvider {
virtual bookmarks::BookmarkModel* GetBookmarkModelForBrowserState(
ChromeBrowserState* browser_state) = 0;
- // Returns the ProfileOAuth2TokenServiceIOS factory for dependencies.
+ // Returns the ProfileOAuth2TokenService factory for dependencies.
virtual KeyedServiceBaseFactory* GetProfileOAuth2TokenServiceIOSFactory() = 0;
droger 2015/06/29 11:55:53 Can we also rename the functions here (remove IOS)
gogerald1 2015/07/01 17:58:41 Done.
- // Returns an instance of ProfileOAuth2TokenServiceIOS tied to
+ // Returns an instance of ProfileOAuth2TokenService tied to
// |browser_state|.
- virtual ProfileOAuth2TokenServiceIOS*
+ virtual ProfileOAuth2TokenService*
GetProfileOAuth2TokenServiceIOSForBrowserState(
ChromeBrowserState* browser_state) = 0;

Powered by Google App Engine
This is Rietveld 408576698