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

Unified Diff: chrome/browser/signin/chrome_signin_client.h

Issue 296703011: Change refs from ChromeSigninClient to base SigninClient class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/signin/chrome_signin_client.h
diff --git a/chrome/browser/signin/chrome_signin_client.h b/chrome/browser/signin/chrome_signin_client.h
index 2ce7c355802b838a6625e9ad2658fe96892eec03..e8c1f9129603a5f644a47646c8bb6b8dc2cafd5d 100644
--- a/chrome/browser/signin/chrome_signin_client.h
+++ b/chrome/browser/signin/chrome_signin_client.h
@@ -7,7 +7,6 @@
#include "base/basictypes.h"
#include "base/compiler_specific.h"
-#include "components/keyed_service/core/keyed_service.h"
#include "components/signin/core/browser/signin_client.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
@@ -17,7 +16,6 @@ class CookieSettings;
class Profile;
class ChromeSigninClient : public SigninClient,
- public KeyedService,
public content::NotificationObserver,
public content::RenderProcessHostObserver {
public:
@@ -36,10 +34,10 @@ class ChromeSigninClient : public SigninClient,
// N.B. This is the id returned by RenderProcessHost::GetID().
// TODO(guohui): Eliminate these APIs once the web-based signin flow is
// replaced by a native flow. crbug.com/347247
- void SetSigninProcess(int host_id);
- void ClearSigninProcess();
- bool IsSigninProcess(int host_id) const;
- bool HasSigninProcess() const;
+ virtual void SetSigninProcess(int host_id) OVERRIDE;
+ virtual void ClearSigninProcess() OVERRIDE;
+ virtual bool IsSigninProcess(int host_id) const OVERRIDE;
+ virtual bool HasSigninProcess() const OVERRIDE;
// content::RenderProcessHostObserver implementation.
virtual void RenderProcessHostDestroyed(content::RenderProcessHost* host)

Powered by Google App Engine
This is Rietveld 408576698