diff options
Diffstat (limited to 'net/proxy/mock_proxy_script_fetcher.cc')
-rw-r--r-- | net/proxy/mock_proxy_script_fetcher.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/proxy/mock_proxy_script_fetcher.cc b/net/proxy/mock_proxy_script_fetcher.cc index 5d66e6c..7604b5b 100644 --- a/net/proxy/mock_proxy_script_fetcher.cc +++ b/net/proxy/mock_proxy_script_fetcher.cc @@ -38,7 +38,7 @@ int MockProxyScriptFetcher::Fetch(const GURL& url, base::string16* text, void MockProxyScriptFetcher::NotifyFetchCompletion( int result, const std::string& ascii_text) { DCHECK(has_pending_request()); - *pending_request_text_ = ASCIIToUTF16(ascii_text); + *pending_request_text_ = base::ASCIIToUTF16(ascii_text); CompletionCallback callback = pending_request_callback_; pending_request_callback_.Reset(); callback.Run(result); |