Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1105)

Unified Diff: content/browser/speech/speech_recognition_request.cc

Issue 8403017: Rename URLFetcher to be URLFetcherImpl, now that we have the content::URLFetcher interface. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/geolocation/network_location_request.cc ('k') | content/common/net/url_fetcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « content/browser/geolocation/network_location_request.cc ('k') | content/common/net/url_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698