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

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

Issue 1220843003: Perform online reauth when password is changed for a locked profile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use DialogDelegateView Created 5 years, 5 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
« no previous file with comments | « google_apis/gaia/gaia_urls.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #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
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 }
OLDNEW
« no previous file with comments | « google_apis/gaia/gaia_urls.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698