| Index: content/browser/speech/speech_recognition_request.cc
|
| ===================================================================
|
| --- content/browser/speech/speech_recognition_request.cc (revision 107484)
|
| +++ content/browser/speech/speech_recognition_request.cc (working copy)
|
| @@ -10,7 +10,7 @@
|
| #include "base/string_number_conversions.h"
|
| #include "base/string_util.h"
|
| #include "base/values.h"
|
| -#include "content/common/net/url_fetcher.h"
|
| +#include "content/common/net/url_fetcher_impl.h"
|
| #include "net/base/escape.h"
|
| #include "net/base/load_flags.h"
|
| #include "net/url_request/url_request_context.h"
|
| @@ -182,10 +182,10 @@
|
|
|
| GURL url(std::string(kDefaultSpeechRecognitionUrl) + JoinString(parts, '&'));
|
|
|
| - url_fetcher_.reset(URLFetcher::Create(url_fetcher_id_for_tests,
|
| - url,
|
| - URLFetcher::POST,
|
| - this));
|
| + url_fetcher_.reset(URLFetcherImpl::Create(url_fetcher_id_for_tests,
|
| + url,
|
| + URLFetcherImpl::POST,
|
| + this));
|
| url_fetcher_->SetChunkedUpload(content_type);
|
| url_fetcher_->SetRequestContext(url_context_);
|
| url_fetcher_->SetReferrer(origin_url);
|
|
|