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

Unified Diff: chrome/common/net/gaia/gaia_oauth_client_unittest.cc

Issue 10412050: Change most content::URLFetcher references to net::URLFetcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix indent and typo Created 8 years, 7 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/common/net/gaia/gaia_oauth_client_unittest.cc
diff --git a/chrome/common/net/gaia/gaia_oauth_client_unittest.cc b/chrome/common/net/gaia/gaia_oauth_client_unittest.cc
index ef9defca49e2cdc94d403a00de08504415ac1141..885589ec59550d90730102d961ffb94a74c3ff6c 100644
--- a/chrome/common/net/gaia/gaia_oauth_client_unittest.cc
+++ b/chrome/common/net/gaia/gaia_oauth_client_unittest.cc
@@ -30,7 +30,7 @@ class MockOAuthFetcher : public TestURLFetcher {
int max_failure_count,
const GURL& url,
const std::string& results,
- content::URLFetcher::RequestType request_type,
+ net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d)
: TestURLFetcher(0, url, d),
max_failure_count_(max_failure_count),
@@ -72,10 +72,10 @@ class MockOAuthFetcherFactory : public content::URLFetcherFactory,
response_code_(net::HTTP_OK) {
}
~MockOAuthFetcherFactory() {}
- virtual content::URLFetcher* CreateURLFetcher(
+ virtual net::URLFetcher* CreateURLFetcher(
int id,
const GURL& url,
- content::URLFetcher::RequestType request_type,
+ net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d) {
return new MockOAuthFetcher(
response_code_,

Powered by Google App Engine
This is Rietveld 408576698