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

Side by Side Diff: google_apis/gaia/gaia_urls.h

Issue 1220843003: Perform online reauth when password is changed for a locked profile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use DialogDelegateView Created 5 years, 5 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 | « google_apis/gaia/fake_gaia.cc ('k') | google_apis/gaia/gaia_urls.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 GOOGLE_APIS_GAIA_GAIA_URLS_H_ 5 #ifndef GOOGLE_APIS_GAIA_GAIA_URLS_H_
6 #define GOOGLE_APIS_GAIA_GAIA_URLS_H_ 6 #define GOOGLE_APIS_GAIA_GAIA_URLS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/singleton.h" 10 #include "base/memory/singleton.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 const GURL& oauth2_token_info_url() const; 46 const GURL& oauth2_token_info_url() const;
47 const GURL& oauth2_revoke_url() const; 47 const GURL& oauth2_revoke_url() const;
48 const GURL& oauth2_iframe_url() const; 48 const GURL& oauth2_iframe_url() const;
49 49
50 const GURL& gaia_login_form_realm() const; 50 const GURL& gaia_login_form_realm() const;
51 51
52 GURL ListAccountsURLWithSource(const std::string& source); 52 GURL ListAccountsURLWithSource(const std::string& source);
53 GURL LogOutURLWithSource(const std::string& source); 53 GURL LogOutURLWithSource(const std::string& source);
54 GURL GetCheckConnectionInfoURLWithSource(const std::string& source); 54 GURL GetCheckConnectionInfoURLWithSource(const std::string& source);
55 55
56 // Continue URL used to signal the completion of the signin flow.
57 GURL signin_completed_continue_url() const;
58
56 private: 59 private:
57 GaiaUrls(); 60 GaiaUrls();
58 ~GaiaUrls(); 61 ~GaiaUrls();
59 62
60 friend struct DefaultSingletonTraits<GaiaUrls>; 63 friend struct DefaultSingletonTraits<GaiaUrls>;
61 64
62 GURL google_url_; 65 GURL google_url_;
63 GURL gaia_url_; 66 GURL gaia_url_;
64 GURL captcha_base_url_; 67 GURL captcha_base_url_;
65 68
(...skipping 30 matching lines...) Expand all
96 GURL oauth2_token_info_url_; 99 GURL oauth2_token_info_url_;
97 GURL oauth2_revoke_url_; 100 GURL oauth2_revoke_url_;
98 GURL oauth2_iframe_url_; 101 GURL oauth2_iframe_url_;
99 102
100 GURL gaia_login_form_realm_; 103 GURL gaia_login_form_realm_;
101 104
102 DISALLOW_COPY_AND_ASSIGN(GaiaUrls); 105 DISALLOW_COPY_AND_ASSIGN(GaiaUrls);
103 }; 106 };
104 107
105 #endif // GOOGLE_APIS_GAIA_GAIA_URLS_H_ 108 #endif // GOOGLE_APIS_GAIA_GAIA_URLS_H_
OLDNEW
« no previous file with comments | « google_apis/gaia/fake_gaia.cc ('k') | google_apis/gaia/gaia_urls.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698