| Index: chrome/browser/net/connection_tester.cc
|
| diff --git a/chrome/browser/net/connection_tester.cc b/chrome/browser/net/connection_tester.cc
|
| index 4ca5b42e7e9104761006c38ba22860f5e4d16d67..e09bed3eee1a7f7339dec6b48ea6fad97b60d351 100644
|
| --- a/chrome/browser/net/connection_tester.cc
|
| +++ b/chrome/browser/net/connection_tester.cc
|
| @@ -328,8 +328,8 @@ void ConnectionTester::TestRunner::OnResponseCompleted(
|
| net::URLRequest* request) {
|
| int result = net::OK;
|
| if (!request->status().is_success()) {
|
| - DCHECK_NE(net::ERR_IO_PENDING, request->status().os_error());
|
| - result = request->status().os_error();
|
| + DCHECK_NE(net::ERR_IO_PENDING, request->status().error());
|
| + result = request->status().error();
|
| }
|
|
|
| // Post a task to notify the parent rather than handling it right away,
|
|
|