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 <set> | 5 #include <set> |
6 #include <string> | 6 #include <string> |
7 | 7 |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/files/scoped_temp_dir.h" | 9 #include "base/files/scoped_temp_dir.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "base/message_loop.h" | 12 #include "base/message_loop/message_loop.h" |
13 #include "base/stl_util.h" | 13 #include "base/stl_util.h" |
14 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
15 #include "base/strings/string_util.h" | 15 #include "base/strings/string_util.h" |
16 #include "base/strings/utf_string_conversions.h" | 16 #include "base/strings/utf_string_conversions.h" |
17 #include "build/build_config.h" | 17 #include "build/build_config.h" |
18 #include "content/browser/byte_stream.h" | 18 #include "content/browser/byte_stream.h" |
19 #include "content/browser/download/download_create_info.h" | 19 #include "content/browser/download/download_create_info.h" |
20 #include "content/browser/download/download_file_factory.h" | 20 #include "content/browser/download/download_file_factory.h" |
21 #include "content/browser/download/download_item_factory.h" | 21 #include "content/browser/download/download_item_factory.h" |
22 #include "content/browser/download/download_item_impl.h" | 22 #include "content/browser/download/download_item_impl.h" |
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
662 .WillOnce(Return()); | 662 .WillOnce(Return()); |
663 EXPECT_CALL(GetMockDownloadItem(3), Remove()) | 663 EXPECT_CALL(GetMockDownloadItem(3), Remove()) |
664 .Times(0); | 664 .Times(0); |
665 | 665 |
666 download_manager_->RemoveAllDownloads(); | 666 download_manager_->RemoveAllDownloads(); |
667 // Because we're mocking the download item, the Remove call doesn't | 667 // Because we're mocking the download item, the Remove call doesn't |
668 // result in them being removed from the DownloadManager list. | 668 // result in them being removed from the DownloadManager list. |
669 } | 669 } |
670 | 670 |
671 } // namespace content | 671 } // namespace content |
OLD | NEW |