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 15 matching lines...) Expand all Loading... |
26 const GURL& get_user_info_url() const; | 26 const GURL& get_user_info_url() const; |
27 const GURL& token_auth_url() const; | 27 const GURL& token_auth_url() const; |
28 const GURL& merge_session_url() const; | 28 const GURL& merge_session_url() const; |
29 const GURL& get_oauth_token_url() const; | 29 const GURL& get_oauth_token_url() const; |
30 const GURL& oauth_get_access_token_url() const; | 30 const GURL& oauth_get_access_token_url() const; |
31 const GURL& oauth_wrap_bridge_url() const; | 31 const GURL& oauth_wrap_bridge_url() const; |
32 const GURL& oauth_user_info_url() const; | 32 const GURL& oauth_user_info_url() const; |
33 const GURL& oauth_revoke_token_url() const; | 33 const GURL& oauth_revoke_token_url() const; |
34 const GURL& oauth1_login_url() const; | 34 const GURL& oauth1_login_url() const; |
35 const GURL& list_accounts_url() const; | 35 const GURL& list_accounts_url() const; |
| 36 const GURL& embedded_signin_url() const; |
36 | 37 |
37 const std::string& oauth1_login_scope() const; | 38 const std::string& oauth1_login_scope() const; |
38 const std::string& oauth_wrap_bridge_user_info_scope() const; | 39 const std::string& oauth_wrap_bridge_user_info_scope() const; |
39 | 40 |
40 const std::string& oauth2_chrome_client_id() const; | 41 const std::string& oauth2_chrome_client_id() const; |
41 const std::string& oauth2_chrome_client_secret() const; | 42 const std::string& oauth2_chrome_client_secret() const; |
42 const GURL& client_login_to_oauth2_url() const; | 43 const GURL& client_login_to_oauth2_url() const; |
43 const GURL& oauth2_auth_url() const; | 44 const GURL& oauth2_auth_url() const; |
44 const GURL& oauth2_token_url() const; | 45 const GURL& oauth2_token_url() const; |
45 const GURL& oauth2_issue_token_url() const; | 46 const GURL& oauth2_issue_token_url() const; |
(...skipping 22 matching lines...) Expand all Loading... |
68 GURL get_user_info_url_; | 69 GURL get_user_info_url_; |
69 GURL token_auth_url_; | 70 GURL token_auth_url_; |
70 GURL merge_session_url_; | 71 GURL merge_session_url_; |
71 GURL get_oauth_token_url_; | 72 GURL get_oauth_token_url_; |
72 GURL oauth_get_access_token_url_; | 73 GURL oauth_get_access_token_url_; |
73 GURL oauth_wrap_bridge_url_; | 74 GURL oauth_wrap_bridge_url_; |
74 GURL oauth_user_info_url_; | 75 GURL oauth_user_info_url_; |
75 GURL oauth_revoke_token_url_; | 76 GURL oauth_revoke_token_url_; |
76 GURL oauth1_login_url_; | 77 GURL oauth1_login_url_; |
77 GURL list_accounts_url_; | 78 GURL list_accounts_url_; |
| 79 GURL embedded_signin_url_; |
78 | 80 |
79 std::string oauth1_login_scope_; | 81 std::string oauth1_login_scope_; |
80 std::string oauth_wrap_bridge_user_info_scope_; | 82 std::string oauth_wrap_bridge_user_info_scope_; |
81 | 83 |
82 std::string oauth2_chrome_client_id_; | 84 std::string oauth2_chrome_client_id_; |
83 std::string oauth2_chrome_client_secret_; | 85 std::string oauth2_chrome_client_secret_; |
84 | 86 |
85 GURL client_login_to_oauth2_url_; | 87 GURL client_login_to_oauth2_url_; |
86 GURL oauth2_auth_url_; | 88 GURL oauth2_auth_url_; |
87 GURL oauth2_token_url_; | 89 GURL oauth2_token_url_; |
88 GURL oauth2_issue_token_url_; | 90 GURL oauth2_issue_token_url_; |
89 GURL oauth2_token_info_url_; | 91 GURL oauth2_token_info_url_; |
90 GURL oauth2_revoke_url_; | 92 GURL oauth2_revoke_url_; |
91 | 93 |
92 GURL gaia_login_form_realm_; | 94 GURL gaia_login_form_realm_; |
93 | 95 |
94 DISALLOW_COPY_AND_ASSIGN(GaiaUrls); | 96 DISALLOW_COPY_AND_ASSIGN(GaiaUrls); |
95 }; | 97 }; |
96 | 98 |
97 #endif // GOOGLE_APIS_GAIA_GAIA_URLS_H_ | 99 #endif // GOOGLE_APIS_GAIA_GAIA_URLS_H_ |
OLD | NEW |