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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 | 45 |
46 private: | 46 private: |
47 GaiaUrls(); | 47 GaiaUrls(); |
48 ~GaiaUrls(); | 48 ~GaiaUrls(); |
49 | 49 |
50 friend struct DefaultSingletonTraits<GaiaUrls>; | 50 friend struct DefaultSingletonTraits<GaiaUrls>; |
51 | 51 |
52 std::string captcha_url_prefix_; | 52 std::string captcha_url_prefix_; |
53 | 53 |
54 std::string gaia_origin_url_; | 54 std::string gaia_origin_url_; |
| 55 std::string lso_origin_url_; |
| 56 std::string google_apis_origin_url_; |
55 std::string client_login_url_; | 57 std::string client_login_url_; |
56 std::string service_login_url_; | 58 std::string service_login_url_; |
57 std::string issue_auth_token_url_; | 59 std::string issue_auth_token_url_; |
58 std::string get_user_info_url_; | 60 std::string get_user_info_url_; |
59 std::string token_auth_url_; | 61 std::string token_auth_url_; |
60 std::string merge_session_url_; | 62 std::string merge_session_url_; |
61 std::string get_oauth_token_url_; | 63 std::string get_oauth_token_url_; |
62 std::string oauth_get_access_token_url_; | 64 std::string oauth_get_access_token_url_; |
63 std::string oauth_wrap_bridge_url_; | 65 std::string oauth_wrap_bridge_url_; |
64 std::string oauth_user_info_url_; | 66 std::string oauth_user_info_url_; |
65 std::string oauth_revoke_token_url_; | 67 std::string oauth_revoke_token_url_; |
66 std::string oauth1_login_url_; | 68 std::string oauth1_login_url_; |
67 | 69 |
68 std::string oauth1_login_scope_; | 70 std::string oauth1_login_scope_; |
69 std::string oauth_wrap_bridge_user_info_scope_; | 71 std::string oauth_wrap_bridge_user_info_scope_; |
70 std::string client_oauth_url_; | 72 std::string client_oauth_url_; |
71 | 73 |
72 std::string oauth2_chrome_client_id_; | 74 std::string oauth2_chrome_client_id_; |
73 std::string oauth2_chrome_client_secret_; | 75 std::string oauth2_chrome_client_secret_; |
74 std::string client_login_to_oauth2_url_; | 76 std::string client_login_to_oauth2_url_; |
75 std::string oauth2_token_url_; | 77 std::string oauth2_token_url_; |
76 std::string oauth2_issue_token_url_; | 78 std::string oauth2_issue_token_url_; |
77 | 79 |
78 std::string gaia_login_form_realm_; | 80 std::string gaia_login_form_realm_; |
79 | 81 |
80 DISALLOW_COPY_AND_ASSIGN(GaiaUrls); | 82 DISALLOW_COPY_AND_ASSIGN(GaiaUrls); |
81 }; | 83 }; |
82 | 84 |
83 #endif // GOOGLE_APIS_GAIA_GAIA_URLS_H_ | 85 #endif // GOOGLE_APIS_GAIA_GAIA_URLS_H_ |
OLD | NEW |