| Index: chrome/browser/net/url_request_mock_util.cc
|
| diff --git a/chrome/browser/net/url_request_mock_util.cc b/chrome/browser/net/url_request_mock_util.cc
|
| index ce32af315255c342e32da07227104252f04dc6b3..d29e8832d6edf54828c280043cc008deada8c9ae 100644
|
| --- a/chrome/browser/net/url_request_mock_util.cc
|
| +++ b/chrome/browser/net/url_request_mock_util.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2010 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.
|
|
|
| @@ -30,7 +30,7 @@ void SetUrlRequestMocksEnabled(bool enabled) {
|
| // anywhere.
|
| base::ThreadRestrictions::ScopedAllowIO allow_io;
|
|
|
| - URLRequestFilter::GetInstance()->ClearHandlers();
|
| + net::URLRequestFilter::GetInstance()->ClearHandlers();
|
|
|
| URLRequestFailedDnsJob::AddUrlHandler();
|
| URLRequestMockLinkDoctorJob::AddUrlHandler();
|
| @@ -42,7 +42,7 @@ void SetUrlRequestMocksEnabled(bool enabled) {
|
| URLRequestSlowHTTPJob::AddUrlHandler(root_http);
|
| } else {
|
| // Revert to the default handlers.
|
| - URLRequestFilter::GetInstance()->ClearHandlers();
|
| + net::URLRequestFilter::GetInstance()->ClearHandlers();
|
| }
|
| }
|
|
|
|
|