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

Unified Diff: chrome/browser/policy/user_info_fetcher.cc

Issue 12686006: Rename GoogleServiceAuthError::None() to AuthErrorNone() and LoginFailure::None() to LoginFailureNo… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/policy/user_info_fetcher.cc
diff --git a/chrome/browser/policy/user_info_fetcher.cc b/chrome/browser/policy/user_info_fetcher.cc
index b9def268f0d6b3185e7c689ed7942b78a8d4decb..e18d1fff7c33ff3b26ed0407722c4c759c7237d0 100644
--- a/chrome/browser/policy/user_info_fetcher.cc
+++ b/chrome/browser/policy/user_info_fetcher.cc
@@ -53,7 +53,7 @@ void UserInfoFetcher::Start(const std::string& access_token) {
void UserInfoFetcher::OnURLFetchComplete(const net::URLFetcher* source) {
net::URLRequestStatus status = source->GetStatus();
- GoogleServiceAuthError error = GoogleServiceAuthError::None();
+ GoogleServiceAuthError error = GoogleServiceAuthError::AuthErrorNone();
if (!status.is_success()) {
if (status.status() == net::URLRequestStatus::CANCELED)
error = GoogleServiceAuthError(GoogleServiceAuthError::REQUEST_CANCELED);

Powered by Google App Engine
This is Rietveld 408576698