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

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

Issue 8375039: Create a content::UrlFetcher interface that lives in content/public/common and convert users to i... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments 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
Index: content/browser/speech/speech_recognition_request.h
===================================================================
--- content/browser/speech/speech_recognition_request.h (revision 107061)
+++ content/browser/speech/speech_recognition_request.h (working copy)
@@ -63,12 +63,12 @@
CONTENT_EXPORT bool HasPendingRequest() { return url_fetcher_ != NULL; }
// content::URLFetcherDelegate methods.
- virtual void OnURLFetchComplete(const URLFetcher* source) OVERRIDE;
+ virtual void OnURLFetchComplete(const content::URLFetcher* source) OVERRIDE;
private:
scoped_refptr<net::URLRequestContextGetter> url_context_;
Delegate* delegate_;
- scoped_ptr<URLFetcher> url_fetcher_;
+ scoped_ptr<content::URLFetcher> url_fetcher_;
DISALLOW_COPY_AND_ASSIGN(SpeechRecognitionRequest);
};
« no previous file with comments | « content/browser/geolocation/network_location_request.cc ('k') | content/browser/speech/speech_recognition_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698