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

Unified Diff: chrome/browser/chromeos/login/mock_url_fetchers.cc

Issue 3442009: [Chrome OS] Attempt offline and online login simultaneously (Closed)
Patch Set: Fix crash on data recover Created 10 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/chromeos/login/mock_url_fetchers.cc
diff --git a/chrome/browser/chromeos/login/mock_url_fetchers.cc b/chrome/browser/chromeos/login/mock_url_fetchers.cc
index 282713e1bc3fe99823d541a82acd9454c2d79acf..0cadd4d2e1448b2849025bdb3848d498b0bdb158 100644
--- a/chrome/browser/chromeos/login/mock_url_fetchers.cc
+++ b/chrome/browser/chromeos/login/mock_url_fetchers.cc
@@ -4,8 +4,11 @@
#include "chrome/browser/chromeos/login/mock_url_fetchers.h"
+#include <errno.h>
+
#include "base/message_loop.h"
#include "chrome/browser/chrome_thread.h"
+#include "chrome/common/net/http_return.h"
#include "chrome/common/net/url_fetcher.h"
#include "googleurl/src/gurl.h"
#include "net/url_request/url_request_status.h"
@@ -27,7 +30,6 @@ ExpectCanceledFetcher::~ExpectCanceledFetcher() {
}
void ExpectCanceledFetcher::Start() {
- LOG(INFO) << "Delaying fetch completion in mock";
task_ = NewRunnableFunction(&ExpectCanceledFetcher::CompleteFetch);
ChromeThread::PostDelayedTask(ChromeThread::UI,
FROM_HERE,
@@ -48,7 +50,6 @@ GotCanceledFetcher::GotCanceledFetcher(bool success,
URLFetcher::Delegate* d)
: URLFetcher(url, request_type, d),
url_(url) {
- LOG(INFO) << url_.spec();
}
GotCanceledFetcher::~GotCanceledFetcher() {}
@@ -59,7 +60,48 @@ void GotCanceledFetcher::Start() {
delegate()->OnURLFetchComplete(this,
url_,
status,
- 403,
+ RC_FORBIDDEN,
+ ResponseCookies(),
+ std::string());
+}
+
+SuccessFetcher::SuccessFetcher(bool success,
+ const GURL& url,
+ const std::string& results,
+ URLFetcher::RequestType request_type,
+ URLFetcher::Delegate* d)
+ : URLFetcher(url, request_type, d),
+ url_(url) {
+}
+
+SuccessFetcher::~SuccessFetcher() {}
+
+void SuccessFetcher::Start() {
+ delegate()->OnURLFetchComplete(this,
+ url_,
+ URLRequestStatus(URLRequestStatus::SUCCESS, 0),
+ RC_REQUEST_OK,
+ ResponseCookies(),
+ std::string());
+}
+
+FailFetcher::FailFetcher(bool success,
+ const GURL& url,
+ const std::string& results,
+ URLFetcher::RequestType request_type,
+ URLFetcher::Delegate* d)
+ : URLFetcher(url, request_type, d),
+ url_(url) {
+}
+
+FailFetcher::~FailFetcher() {}
+
+void FailFetcher::Start() {
+ URLRequestStatus failed(URLRequestStatus::FAILED, ECONNRESET);
+ delegate()->OnURLFetchComplete(this,
+ url_,
+ failed,
+ RC_REQUEST_OK,
ResponseCookies(),
std::string());
}

Powered by Google App Engine
This is Rietveld 408576698