| Index: content/browser/download/download_browsertest.cc
|
| diff --git a/content/browser/download/download_browsertest.cc b/content/browser/download/download_browsertest.cc
|
| index 912637148edc5ad8f0e10df3359dd3a31a2a9ff1..19a05a2d6a0c726020a7f7e8eadf3e563a0f4297 100644
|
| --- a/content/browser/download/download_browsertest.cc
|
| +++ b/content/browser/download/download_browsertest.cc
|
| @@ -1071,13 +1071,7 @@ IN_PROC_BROWSER_TEST_F(DownloadContentTest, StrongValidators) {
|
|
|
| // Resumption should only attempt to contact the final URL if the download has a
|
| // URL chain.
|
| -// Fails on Win x64 GN (dbg). https://crbug.com/598360
|
| -#if defined(OS_WIN)
|
| -#define MAYBE_RedirectBeforeResume DISABLED_RedirectBeforeResume
|
| -#else
|
| -#define MAYBE_RedirectBeforeResume RedirectBeforeResume
|
| -#endif
|
| -IN_PROC_BROWSER_TEST_F(DownloadContentTest, MAYBE_RedirectBeforeResume) {
|
| +IN_PROC_BROWSER_TEST_F(DownloadContentTest, RedirectBeforeResume) {
|
| TestDownloadRequestHandler request_handler_1(
|
| GURL("http://example.com/first-url"));
|
| request_handler_1.StartServingStaticResponse(
|
| @@ -1131,13 +1125,7 @@ IN_PROC_BROWSER_TEST_F(DownloadContentTest, MAYBE_RedirectBeforeResume) {
|
|
|
| // If a resumption request results in a redirect, the response should be ignored
|
| // and the download should be marked as interrupted again.
|
| -// Fails on Win x64 GN (dbg). https://crbug.com/598360
|
| -#if defined(OS_WIN)
|
| -#define MAYBE_RedirectWhileResume DISABLED_RedirectWhileResume
|
| -#else
|
| -#define MAYBE_RedirectWhileResume RedirectWhileResume
|
| -#endif
|
| -IN_PROC_BROWSER_TEST_F(DownloadContentTest, MAYBE_RedirectWhileResume) {
|
| +IN_PROC_BROWSER_TEST_F(DownloadContentTest, RedirectWhileResume) {
|
| TestDownloadRequestHandler request_handler(
|
| GURL("http://example.com/first-url"));
|
| TestDownloadRequestHandler::Parameters parameters =
|
| @@ -1199,13 +1187,7 @@ IN_PROC_BROWSER_TEST_F(DownloadContentTest, MAYBE_RedirectWhileResume) {
|
| // not the range that was requested or an invalid or missing Content-Range
|
| // header), then the download should be marked as interrupted again without
|
| // discarding the partial state.
|
| -// Fails on Win x64 GN (dbg). https://crbug.com/598360
|
| -#if defined(OS_WIN)
|
| -#define MAYBE_BadRangeHeader DISABLED_BadRangeHeader
|
| -#else
|
| -#define MAYBE_BadRangeHeader BadRangeHeader
|
| -#endif
|
| -IN_PROC_BROWSER_TEST_F(DownloadContentTest, MAYBE_BadRangeHeader) {
|
| +IN_PROC_BROWSER_TEST_F(DownloadContentTest, BadRangeHeader) {
|
| TestDownloadRequestHandler request_handler;
|
| TestDownloadRequestHandler::Parameters parameters =
|
| TestDownloadRequestHandler::Parameters::WithSingleInterruption();
|
|
|