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

Unified Diff: chrome/browser/translate/translate_manager.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: chrome/browser/translate/translate_manager.h
===================================================================
--- chrome/browser/translate/translate_manager.h (revision 107061)
+++ chrome/browser/translate/translate_manager.h (working copy)
@@ -75,7 +75,7 @@
const content::NotificationDetails& details);
// content::URLFetcherDelegate implementation:
- virtual void OnURLFetchComplete(const URLFetcher* source);
+ virtual void OnURLFetchComplete(const content::URLFetcher* source);
// Used by unit-tests to override the default delay after which the translate
// script is fetched again from the translation server.
@@ -197,11 +197,11 @@
int translate_script_expiration_delay_;
// Set when the translate JS is currently being retrieved. NULL otherwise.
- scoped_ptr<URLFetcher> translate_script_request_pending_;
+ scoped_ptr<content::URLFetcher> translate_script_request_pending_;
// Set when the list of languages is currently being retrieved.
// NULL otherwise.
- scoped_ptr<URLFetcher> language_list_request_pending_;
+ scoped_ptr<content::URLFetcher> language_list_request_pending_;
// The list of pending translate requests. Translate requests are queued when
// the translate script is not ready and has to be fetched from the translate
« no previous file with comments | « chrome/browser/tab_contents/spelling_menu_observer.cc ('k') | chrome/browser/translate/translate_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698