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

Unified Diff: chrome/common/net/gaia/gaia_auth_fetcher_unittest.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
Index: chrome/common/net/gaia/gaia_auth_fetcher_unittest.cc
===================================================================
--- chrome/common/net/gaia/gaia_auth_fetcher_unittest.cc (revision 107484)
+++ chrome/common/net/gaia/gaia_auth_fetcher_unittest.cc (working copy)
@@ -17,7 +17,6 @@
#include "chrome/common/net/gaia/google_service_auth_error.h"
#include "chrome/common/net/http_return.h"
#include "chrome/test/base/testing_profile.h"
-#include "content/common/net/url_fetcher.h"
#include "content/public/common/url_fetcher_delegate.h"
#include "content/test/test_url_fetcher_factory.h"
#include "googleurl/src/gurl.h"
@@ -185,7 +184,7 @@
MockFetcher mock_fetcher(
client_login_source_, status, 0, net::ResponseCookies(), std::string(),
- URLFetcher::GET, &auth);
+ content::URLFetcher::GET, &auth);
auth.OnURLFetchComplete(&mock_fetcher);
}
@@ -205,7 +204,7 @@
MockFetcher mock_fetcher(
issue_auth_token_source_, status, 0, cookies_, std::string(),
- URLFetcher::GET, &auth);
+ content::URLFetcher::GET, &auth);
auth.OnURLFetchComplete(&mock_fetcher);
}
@@ -226,7 +225,7 @@
MockFetcher mock_fetcher(
client_login_source_, status, RC_FORBIDDEN, cookies_, data,
- URLFetcher::GET, &auth);
+ content::URLFetcher::GET, &auth);
auth.OnURLFetchComplete(&mock_fetcher);
}
@@ -274,7 +273,7 @@
net::URLRequestStatus status(net::URLRequestStatus::SUCCESS, 0);
MockFetcher mock_fetcher(
client_login_source_, status, RC_REQUEST_OK, cookies_, data,
- URLFetcher::GET, &auth);
+ content::URLFetcher::GET, &auth);
auth.OnURLFetchComplete(&mock_fetcher);
}
@@ -288,7 +287,7 @@
net::URLRequestStatus status(net::URLRequestStatus::SUCCESS, 0);
MockFetcher mock_fetcher(
issue_auth_token_source_, status, RC_REQUEST_OK, cookies_, "token",
- URLFetcher::GET, &auth);
+ content::URLFetcher::GET, &auth);
auth.OnURLFetchComplete(&mock_fetcher);
}
@@ -320,7 +319,7 @@
net::URLRequestStatus status(net::URLRequestStatus::SUCCESS, 0);
MockFetcher mock_fetcher(
client_login_source_, status, RC_FORBIDDEN, cookies_, response,
- URLFetcher::GET, &auth);
+ content::URLFetcher::GET, &auth);
auth.OnURLFetchComplete(&mock_fetcher);
}
@@ -476,7 +475,7 @@
client_login_source_,
net::URLRequestStatus(net::URLRequestStatus::SUCCESS, 0),
RC_REQUEST_OK, cookies_, "SID=sid\nLSID=lsid\nAuth=auth\n",
- URLFetcher::GET, &auth);
+ content::URLFetcher::GET, &auth);
auth.OnURLFetchComplete(&mock_fetcher);
EXPECT_FALSE(auth.HasPendingFetch());
}
@@ -498,7 +497,7 @@
issue_auth_token_source_,
net::URLRequestStatus(net::URLRequestStatus::SUCCESS, 0),
RC_REQUEST_OK, cookies_, "token",
- URLFetcher::GET, &auth);
+ content::URLFetcher::GET, &auth);
auth.OnURLFetchComplete(&mock_fetcher);
EXPECT_FALSE(auth.HasPendingFetch());
}
@@ -519,7 +518,7 @@
MockFetcher mock_fetcher(
issue_auth_token_source_,
net::URLRequestStatus(net::URLRequestStatus::SUCCESS, 0),
- RC_FORBIDDEN, cookies_, "", URLFetcher::GET, &auth);
+ RC_FORBIDDEN, cookies_, "", content::URLFetcher::GET, &auth);
auth.OnURLFetchComplete(&mock_fetcher);
EXPECT_FALSE(auth.HasPendingFetch());
}
@@ -540,7 +539,8 @@
MockFetcher mock_fetcher(
token_auth_source_,
net::URLRequestStatus(net::URLRequestStatus::SUCCESS, 0),
- RC_REQUEST_OK, cookies_, "<html></html>", URLFetcher::GET, &auth);
+ RC_REQUEST_OK, cookies_, "<html></html>", content::URLFetcher::GET,
+ &auth);
auth.OnURLFetchComplete(&mock_fetcher);
EXPECT_FALSE(auth.HasPendingFetch());
}
@@ -561,7 +561,7 @@
MockFetcher mock_fetcher(
token_auth_source_,
net::URLRequestStatus(net::URLRequestStatus::SUCCESS, 0),
- RC_UNAUTHORIZED, cookies_, "", URLFetcher::GET, &auth);
+ RC_UNAUTHORIZED, cookies_, "", content::URLFetcher::GET, &auth);
auth.OnURLFetchComplete(&mock_fetcher);
EXPECT_FALSE(auth.HasPendingFetch());
}
@@ -582,7 +582,7 @@
MockFetcher mock_fetcher(
token_auth_source_,
net::URLRequestStatus(net::URLRequestStatus::FAILED, 0),
- RC_REQUEST_OK, cookies_, "", URLFetcher::GET, &auth);
+ RC_REQUEST_OK, cookies_, "", content::URLFetcher::GET, &auth);
auth.OnURLFetchComplete(&mock_fetcher);
EXPECT_FALSE(auth.HasPendingFetch());
}
@@ -603,7 +603,8 @@
MockFetcher mock_fetcher(
merge_session_source_,
net::URLRequestStatus(net::URLRequestStatus::SUCCESS, 0),
- RC_REQUEST_OK, cookies_, "<html></html>", URLFetcher::GET, &auth);
+ RC_REQUEST_OK, cookies_, "<html></html>", content::URLFetcher::GET,
+ &auth);
auth.OnURLFetchComplete(&mock_fetcher);
EXPECT_FALSE(auth.HasPendingFetch());
}
« no previous file with comments | « chrome/common/net/gaia/gaia_auth_fetcher_unittest.h ('k') | chrome/common/net/gaia/gaia_oauth_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698