Index: chrome/browser/chromeos/login/mock_auth_response_handler.h |
diff --git a/chrome/browser/chromeos/login/mock_auth_response_handler.h b/chrome/browser/chromeos/login/mock_auth_response_handler.h |
index db4651a5c1c05bb16a1537d18b3c85ab5a9c3f65..7b82cb81bc2bd7334e42756e4c180b5f6e1a5bed 100644 |
--- a/chrome/browser/chromeos/login/mock_auth_response_handler.h |
+++ b/chrome/browser/chromeos/login/mock_auth_response_handler.h |
@@ -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. |
@@ -28,7 +28,7 @@ namespace chromeos { |
class MockAuthResponseHandler : public AuthResponseHandler { |
public: |
MockAuthResponseHandler(const GURL& url, |
- const URLRequestStatus& status, |
+ const net::URLRequestStatus& status, |
const int code, |
const std::string& data); |
virtual ~MockAuthResponseHandler() {} |
@@ -41,13 +41,13 @@ class MockAuthResponseHandler : public AuthResponseHandler { |
private: |
const GURL remote_; |
- const URLRequestStatus status_; |
+ const net::URLRequestStatus status_; |
const int http_response_code_; |
const std::string data_; |
static void CompleteFetch(URLFetcher::Delegate* delegate, |
const GURL remote, |
- const URLRequestStatus status, |
+ const net::URLRequestStatus status, |
const int http_response_code, |
const std::string data); |