| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <shlwapi.h> | 5 #include <shlwapi.h> |
| 6 #include <sstream> | 6 #include <sstream> |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 RunSizeTest(url, L"32.0 KB - " + filename, L"100% - " + filename); | 232 RunSizeTest(url, L"32.0 KB - " + filename, L"100% - " + filename); |
| 233 } | 233 } |
| 234 | 234 |
| 235 // http://b/1158253 | 235 // http://b/1158253 |
| 236 TEST_F(DownloadTest, DISABLED_KnownSize) { | 236 TEST_F(DownloadTest, DISABLED_KnownSize) { |
| 237 std::wstring url(URLRequestSlowDownloadJob::kKnownSizeUrl); | 237 std::wstring url(URLRequestSlowDownloadJob::kKnownSizeUrl); |
| 238 std::wstring filename = file_util::GetFilenameFromPath(url); | 238 std::wstring filename = file_util::GetFilenameFromPath(url); |
| 239 RunSizeTest(url, L"71% - " + filename, L"100% - " + filename); | 239 RunSizeTest(url, L"71% - " + filename, L"100% - " + filename); |
| 240 } | 240 } |
| 241 | 241 |
| OLD | NEW |