| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <stddef.h> | 5 #include <stddef.h> |
| 6 #include <stdint.h> | 6 #include <stdint.h> |
| 7 | 7 |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/files/file.h" | 11 #include "base/files/file.h" |
| 12 #include "base/files/file_util.h" | 12 #include "base/files/file_util.h" |
| 13 #include "base/location.h" | 13 #include "base/location.h" |
| 14 #include "base/run_loop.h" | 14 #include "base/run_loop.h" |
| 15 #include "base/single_thread_task_runner.h" | 15 #include "base/single_thread_task_runner.h" |
| 16 #include "base/strings/string_number_conversions.h" | 16 #include "base/strings/string_number_conversions.h" |
| 17 #include "base/test/test_file_util.h" | 17 #include "base/test/test_file_util.h" |
| 18 #include "base/thread_task_runner_handle.h" | 18 #include "base/threading/thread_task_runner_handle.h" |
| 19 #include "build/build_config.h" | 19 #include "build/build_config.h" |
| 20 #include "content/browser/browser_thread_impl.h" | 20 #include "content/browser/browser_thread_impl.h" |
| 21 #include "content/browser/byte_stream.h" | 21 #include "content/browser/byte_stream.h" |
| 22 #include "content/browser/download/download_create_info.h" | 22 #include "content/browser/download/download_create_info.h" |
| 23 #include "content/browser/download/download_destination_observer.h" | 23 #include "content/browser/download/download_destination_observer.h" |
| 24 #include "content/browser/download/download_file_impl.h" | 24 #include "content/browser/download/download_file_impl.h" |
| 25 #include "content/browser/download/download_request_handle.h" | 25 #include "content/browser/download/download_request_handle.h" |
| 26 #include "content/public/browser/download_interrupt_reasons.h" | 26 #include "content/public/browser/download_interrupt_reasons.h" |
| 27 #include "content/public/browser/download_manager.h" | 27 #include "content/public/browser/download_manager.h" |
| 28 #include "content/public/test/mock_download_manager.h" | 28 #include "content/public/test/mock_download_manager.h" |
| (...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 EXPECT_CALL(*(observer_.get()), | 789 EXPECT_CALL(*(observer_.get()), |
| 790 CurrentUpdateStatus(strlen(kTestData1) + strlen(kTestData2), _)); | 790 CurrentUpdateStatus(strlen(kTestData1) + strlen(kTestData2), _)); |
| 791 | 791 |
| 792 sink_callback_.Run(); | 792 sink_callback_.Run(); |
| 793 loop_.RunUntilIdle(); | 793 loop_.RunUntilIdle(); |
| 794 VerifyStreamAndSize(); | 794 VerifyStreamAndSize(); |
| 795 DestroyDownloadFile(0); | 795 DestroyDownloadFile(0); |
| 796 } | 796 } |
| 797 | 797 |
| 798 } // namespace content | 798 } // namespace content |
| OLD | NEW |