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 #include "google_apis/gaia/gaia_urls.h" | 5 #include "google_apis/gaia/gaia_urls.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
10 #include "google_apis/gaia/gaia_switches.h" | 10 #include "google_apis/gaia/gaia_switches.h" |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 : service_logout_url_.Resolve( | 276 : service_logout_url_.Resolve( |
277 base::StringPrintf("?source=%s", source.c_str())); | 277 base::StringPrintf("?source=%s", source.c_str())); |
278 } | 278 } |
279 | 279 |
280 GURL GaiaUrls::GetCheckConnectionInfoURLWithSource(const std::string& source) { | 280 GURL GaiaUrls::GetCheckConnectionInfoURLWithSource(const std::string& source) { |
281 return source.empty() | 281 return source.empty() |
282 ? get_check_connection_info_url_ | 282 ? get_check_connection_info_url_ |
283 : get_check_connection_info_url_.Resolve( | 283 : get_check_connection_info_url_.Resolve( |
284 base::StringPrintf("?source=%s", source.c_str())); | 284 base::StringPrintf("?source=%s", source.c_str())); |
285 } | 285 } |
| 286 |
| 287 GURL GaiaUrls::signin_completed_continue_url() const { |
| 288 return |
| 289 GURL("chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik/success.html"); |
| 290 } |
OLD | NEW |