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 #ifndef CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_ | 5 #ifndef CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_ |
6 #define CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_ | 6 #define CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
22 | 22 |
23 namespace content { | 23 namespace content { |
24 | 24 |
25 class MockDownloadFile : public DownloadFile { | 25 class MockDownloadFile : public DownloadFile { |
26 public: | 26 public: |
27 MockDownloadFile(); | 27 MockDownloadFile(); |
28 virtual ~MockDownloadFile(); | 28 virtual ~MockDownloadFile(); |
29 | 29 |
30 // DownloadFile functions. | 30 // DownloadFile functions. |
31 MOCK_METHOD1(Initialize, void(const InitializeCallback&)); | 31 MOCK_METHOD2(Initialize, |
| 32 void(const InitializeCallback&, |
| 33 const DownloadItem::ReceivedSlices& received_slices)); |
32 void AddByteStream(std::unique_ptr<ByteStreamReader> stream_reader, | 34 void AddByteStream(std::unique_ptr<ByteStreamReader> stream_reader, |
33 int64_t offset, | 35 int64_t offset, |
34 int64_t length) override; | 36 int64_t length) override; |
35 MOCK_METHOD3(DoAddByteStream, | 37 MOCK_METHOD3(DoAddByteStream, |
36 void(ByteStreamReader* stream_reader, | 38 void(ByteStreamReader* stream_reader, |
37 int64_t offset, | 39 int64_t offset, |
38 int64_t length)); | 40 int64_t length)); |
39 MOCK_METHOD2(AppendDataToFile, DownloadInterruptReason( | 41 MOCK_METHOD2(AppendDataToFile, DownloadInterruptReason( |
40 const char* data, size_t data_len)); | 42 const char* data, size_t data_len)); |
41 MOCK_METHOD1(Rename, DownloadInterruptReason( | 43 MOCK_METHOD1(Rename, DownloadInterruptReason( |
(...skipping 19 matching lines...) Expand all Loading... |
61 MOCK_METHOD1(GetHash, bool(std::string* hash)); | 63 MOCK_METHOD1(GetHash, bool(std::string* hash)); |
62 MOCK_METHOD0(SendUpdate, void()); | 64 MOCK_METHOD0(SendUpdate, void()); |
63 MOCK_CONST_METHOD0(Id, int()); | 65 MOCK_CONST_METHOD0(Id, int()); |
64 MOCK_METHOD0(GetDownloadManager, DownloadManager*()); | 66 MOCK_METHOD0(GetDownloadManager, DownloadManager*()); |
65 MOCK_CONST_METHOD0(DebugString, std::string()); | 67 MOCK_CONST_METHOD0(DebugString, std::string()); |
66 }; | 68 }; |
67 | 69 |
68 } // namespace content | 70 } // namespace content |
69 | 71 |
70 #endif // CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_ | 72 #endif // CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_ |
OLD | NEW |