Index: net/spdy/spdy_network_transaction_unittest.cc |
diff --git a/net/spdy/spdy_network_transaction_unittest.cc b/net/spdy/spdy_network_transaction_unittest.cc |
index 586f7dce56fa8462df743408853e1a6adf409106..e6413429bf9648bb7fc870f9efd3b755efc1db52 100644 |
--- a/net/spdy/spdy_network_transaction_unittest.cc |
+++ b/net/spdy/spdy_network_transaction_unittest.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. |
@@ -2252,7 +2252,7 @@ TEST_P(SpdyNetworkTransactionTest, RedirectGetRequest) { |
MessageLoop::current()->Run(); |
EXPECT_EQ(1, d.response_started_count()); |
EXPECT_FALSE(d.received_data_before_response()); |
- EXPECT_EQ(URLRequestStatus::SUCCESS, r.status().status()); |
+ EXPECT_EQ(net::URLRequestStatus::SUCCESS, r.status().status()); |
std::string contents("hello!"); |
EXPECT_EQ(contents, d.data_received()); |
} |
@@ -2390,7 +2390,7 @@ TEST_P(SpdyNetworkTransactionTest, RedirectServerPush) { |
MessageLoop::current()->Run(); |
EXPECT_EQ(1, d2.response_started_count()); |
EXPECT_FALSE(d2.received_data_before_response()); |
- EXPECT_EQ(URLRequestStatus::SUCCESS, r2.status().status()); |
+ EXPECT_EQ(net::URLRequestStatus::SUCCESS, r2.status().status()); |
std::string contents2("hello!"); |
EXPECT_EQ(contents2, d2.data_received()); |
} |