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

Side by Side Diff: chrome/browser/signin/chrome_signin_client.h

Issue 566933005: Do not display lock for hosted domains (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change to a hosted domain preference. Fix unit tests. Created 6 years, 3 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_ 5 #ifndef CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_
6 #define CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_ 6 #define CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "components/signin/core/browser/signin_client.h" 10 #include "components/signin/core/browser/signin_client.h"
(...skipping 30 matching lines...) Expand all
41 41
42 // content::RenderProcessHostObserver implementation. 42 // content::RenderProcessHostObserver implementation.
43 virtual void RenderProcessHostDestroyed(content::RenderProcessHost* host) 43 virtual void RenderProcessHostDestroyed(content::RenderProcessHost* host)
44 OVERRIDE; 44 OVERRIDE;
45 45
46 // SigninClient implementation. 46 // SigninClient implementation.
47 virtual PrefService* GetPrefs() OVERRIDE; 47 virtual PrefService* GetPrefs() OVERRIDE;
48 virtual scoped_refptr<TokenWebData> GetDatabase() OVERRIDE; 48 virtual scoped_refptr<TokenWebData> GetDatabase() OVERRIDE;
49 virtual bool CanRevokeCredentials() OVERRIDE; 49 virtual bool CanRevokeCredentials() OVERRIDE;
50 virtual std::string GetSigninScopedDeviceId() OVERRIDE; 50 virtual std::string GetSigninScopedDeviceId() OVERRIDE;
51 virtual void ClearSigninScopedDeviceId() OVERRIDE; 51 virtual void ClearSigninClientPrefs() OVERRIDE;
52 virtual net::URLRequestContextGetter* GetURLRequestContext() OVERRIDE; 52 virtual net::URLRequestContextGetter* GetURLRequestContext() OVERRIDE;
53 virtual bool ShouldMergeSigninCredentialsIntoCookieJar() OVERRIDE; 53 virtual bool ShouldMergeSigninCredentialsIntoCookieJar() OVERRIDE;
54 virtual bool IsFirstRun() const OVERRIDE; 54 virtual bool IsFirstRun() const OVERRIDE;
55 virtual base::Time GetInstallDate() OVERRIDE; 55 virtual base::Time GetInstallDate() OVERRIDE;
56 56
57 // Returns a string describing the chrome version environment. Version format: 57 // Returns a string describing the chrome version environment. Version format:
58 // <Build Info> <OS> <Version number> (<Last change>)<channel or "-devel"> 58 // <Build Info> <OS> <Version number> (<Last change>)<channel or "-devel">
59 // If version information is unavailable, returns "invalid." 59 // If version information is unavailable, returns "invalid."
60 virtual std::string GetProductVersion() OVERRIDE; 60 virtual std::string GetProductVersion() OVERRIDE;
61 virtual scoped_ptr<CookieChangedCallbackList::Subscription> 61 virtual scoped_ptr<CookieChangedCallbackList::Subscription>
(...skipping 22 matching lines...) Expand all
84 // by ID, if there is one. 84 // by ID, if there is one.
85 int signin_host_id_; 85 int signin_host_id_;
86 86
87 // The RenderProcessHosts being observed. 87 // The RenderProcessHosts being observed.
88 std::set<content::RenderProcessHost*> signin_hosts_observed_; 88 std::set<content::RenderProcessHost*> signin_hosts_observed_;
89 89
90 DISALLOW_COPY_AND_ASSIGN(ChromeSigninClient); 90 DISALLOW_COPY_AND_ASSIGN(ChromeSigninClient);
91 }; 91 };
92 92
93 #endif // CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_ 93 #endif // CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698