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

Unified Diff: chrome/browser/chromeos/login/mock_auth_response_handler.cc

Issue 6166010: net: Remove typedef net::URLRequestStatus URLRequestStatus; (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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/chromeos/login/mock_auth_response_handler.cc
diff --git a/chrome/browser/chromeos/login/mock_auth_response_handler.cc b/chrome/browser/chromeos/login/mock_auth_response_handler.cc
index 755064d50f1c8aae193efe15637394d4194f4848..be82e838de6a67f98321d6a1eb463e5134cdcd81 100644
--- a/chrome/browser/chromeos/login/mock_auth_response_handler.cc
+++ b/chrome/browser/chromeos/login/mock_auth_response_handler.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -17,10 +17,11 @@ namespace chromeos {
using ::testing::_;
using ::testing::Invoke;
-MockAuthResponseHandler::MockAuthResponseHandler(const GURL& url,
- const URLRequestStatus& status,
- const int code,
- const std::string& data)
+MockAuthResponseHandler::MockAuthResponseHandler(
+ const GURL& url,
+ const net::URLRequestStatus& status,
+ const int code,
+ const std::string& data)
: remote_(url),
status_(status),
http_response_code_(code),
@@ -34,7 +35,7 @@ MockAuthResponseHandler::MockAuthResponseHandler(const GURL& url,
void MockAuthResponseHandler::CompleteFetch(URLFetcher::Delegate* delegate,
const GURL remote,
- const URLRequestStatus status,
+ const net::URLRequestStatus status,
const int http_response_code,
const std::string data) {
delegate->OnURLFetchComplete(NULL,
« no previous file with comments | « chrome/browser/chromeos/login/google_authenticator_unittest.cc ('k') | chrome/browser/chromeos/login/mock_url_fetchers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698