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

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

Issue 3407008: [Chrome OS] Infrastucture for doing offline/online login simultaneously (Closed)
Patch Set: re-upload (again) due to 500s Created 10 years, 3 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
« no previous file with comments | « chrome/browser/chromeos/login/mock_url_fetchers.h ('k') | chrome/browser/chromeos/login/online_attempt.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
new file mode 100644
index 0000000000000000000000000000000000000000..282713e1bc3fe99823d541a82acd9454c2d79acf
--- /dev/null
+++ b/chrome/browser/chromeos/login/mock_url_fetchers.cc
@@ -0,0 +1,67 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/chromeos/login/mock_url_fetchers.h"
+
+#include "base/message_loop.h"
+#include "chrome/browser/chrome_thread.h"
+#include "chrome/common/net/url_fetcher.h"
+#include "googleurl/src/gurl.h"
+#include "net/url_request/url_request_status.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace chromeos {
+
+ExpectCanceledFetcher::ExpectCanceledFetcher(
+ bool success,
+ const GURL& url,
+ const std::string& results,
+ URLFetcher::RequestType request_type,
+ URLFetcher::Delegate* d)
+ : URLFetcher(url, request_type, d) {
+}
+
+ExpectCanceledFetcher::~ExpectCanceledFetcher() {
+ task_->Cancel();
+}
+
+void ExpectCanceledFetcher::Start() {
+ LOG(INFO) << "Delaying fetch completion in mock";
+ task_ = NewRunnableFunction(&ExpectCanceledFetcher::CompleteFetch);
+ ChromeThread::PostDelayedTask(ChromeThread::UI,
+ FROM_HERE,
+ task_,
+ 100);
+}
+
+// static
+void ExpectCanceledFetcher::CompleteFetch() {
+ ADD_FAILURE() << "Fetch completed in ExpectCanceledFetcher!";
+ MessageLoop::current()->Quit(); // Allow exiting even if we mess up.
+}
+
+GotCanceledFetcher::GotCanceledFetcher(bool success,
+ const GURL& url,
+ const std::string& results,
+ URLFetcher::RequestType request_type,
+ URLFetcher::Delegate* d)
+ : URLFetcher(url, request_type, d),
+ url_(url) {
+ LOG(INFO) << url_.spec();
+}
+
+GotCanceledFetcher::~GotCanceledFetcher() {}
+
+void GotCanceledFetcher::Start() {
+ URLRequestStatus status;
+ status.set_status(URLRequestStatus::CANCELED);
+ delegate()->OnURLFetchComplete(this,
+ url_,
+ status,
+ 403,
+ ResponseCookies(),
+ std::string());
+}
+
+} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/login/mock_url_fetchers.h ('k') | chrome/browser/chromeos/login/online_attempt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698