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

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

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ToT Created 5 years, 3 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
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « extensions/shell/browser/shell_extension_system_factory.cc ('k') | google_apis/gaia/gaia_urls.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698