OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |