| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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. | 56 // Continue URL used to signal the completion of the signin flow. |
| 57 GURL signin_completed_continue_url() const; | 57 GURL signin_completed_continue_url() const; |
| 58 | 58 |
| 59 private: | 59 private: |
| 60 GaiaUrls(); | 60 GaiaUrls(); |
| 61 ~GaiaUrls(); | 61 ~GaiaUrls(); |
| 62 | 62 |
| 63 friend struct DefaultSingletonTraits<GaiaUrls>; | 63 friend struct base::DefaultSingletonTraits<GaiaUrls>; |
| 64 | 64 |
| 65 GURL google_url_; | 65 GURL google_url_; |
| 66 GURL gaia_url_; | 66 GURL gaia_url_; |
| 67 GURL captcha_base_url_; | 67 GURL captcha_base_url_; |
| 68 | 68 |
| 69 GURL lso_origin_url_; | 69 GURL lso_origin_url_; |
| 70 GURL google_apis_origin_url_; | 70 GURL google_apis_origin_url_; |
| 71 | 71 |
| 72 GURL client_login_url_; | 72 GURL client_login_url_; |
| 73 GURL service_login_url_; | 73 GURL service_login_url_; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 99 GURL oauth2_token_info_url_; | 99 GURL oauth2_token_info_url_; |
| 100 GURL oauth2_revoke_url_; | 100 GURL oauth2_revoke_url_; |
| 101 GURL oauth2_iframe_url_; | 101 GURL oauth2_iframe_url_; |
| 102 | 102 |
| 103 GURL gaia_login_form_realm_; | 103 GURL gaia_login_form_realm_; |
| 104 | 104 |
| 105 DISALLOW_COPY_AND_ASSIGN(GaiaUrls); | 105 DISALLOW_COPY_AND_ASSIGN(GaiaUrls); |
| 106 }; | 106 }; |
| 107 | 107 |
| 108 #endif // GOOGLE_APIS_GAIA_GAIA_URLS_H_ | 108 #endif // GOOGLE_APIS_GAIA_GAIA_URLS_H_ |
| OLD | NEW |