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

Unified Diff: chrome/browser/automation/url_request_slow_http_job.h

Issue 155941: Make AutomationProxyTest.NavigateToURLWithTimeout* tests not-flaky. (Closed)
Patch Set: maintainability fixes Created 11 years, 5 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/automation/url_request_slow_http_job.h
diff --git a/chrome/browser/automation/url_request_slow_http_job.h b/chrome/browser/automation/url_request_slow_http_job.h
new file mode 100644
index 0000000000000000000000000000000000000000..6048287e5805938f63eacdac801a34c4db37cbdf
--- /dev/null
+++ b/chrome/browser/automation/url_request_slow_http_job.h
@@ -0,0 +1,41 @@
+// Copyright (c) 2009 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.
+//
+// A URLRequestMockHTTPJob class that inserts a time delay in processing.
+
+#ifndef CHROME_BROWSER_AUTOMATION_URL_REQUEST_SLOW_HTTP_JOB_H_
+#define CHROME_BROWSER_AUTOMATION_URL_REQUEST_SLOW_HTTP_JOB_H_
+
+#include <string>
+
+#include "base/timer.h"
+#include "chrome/browser/automation/url_request_mock_http_job.h"
+
+class URLRequestSlowHTTPJob : public URLRequestMockHTTPJob {
+ public:
+ URLRequestSlowHTTPJob(URLRequest* request, const FilePath& file_path);
+
+ static const int kDelayMs;
+
+ static URLRequest::ProtocolFactory Factory;
+
+ // For UI tests: adds the testing URLs to the URLRequestFilter.
+ static void AddUITestUrls(const std::wstring& base_path);
+
+ // Given the path to a file relative to base_path_, construct a mock URL.
+ static GURL GetMockUrl(const std::wstring& path);
+
+ virtual void Start();
+
+ private:
+ void RealStart();
+
+ base::OneShotTimer<URLRequestSlowHTTPJob> delay_timer_;
+
+ // This is the file path leading to the root of the directory to use as the
+ // root of the http server.
+ static std::wstring base_path_;
+};
+
+# endif // CHROME_BROWSER_AUTOMATION_URL_REQUEST_SLOW_HTTP_JOB_H_
« no previous file with comments | « chrome/browser/automation/url_request_mock_http_job.cc ('k') | chrome/browser/automation/url_request_slow_http_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698