| 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_METHOD3(Initialize, | 31 MOCK_METHOD4(Initialize, |
| 32 void(const InitializeCallback&, | 32 void(const InitializeCallback&, |
| 33 const CancelRequestCallback&, | 33 const CancelRequestCallback&, |
| 34 const DownloadItem::ReceivedSlices& received_slices)); | 34 const DownloadItem::ReceivedSlices& received_slices, |
| 35 bool is_parallelizable)); |
| 35 void AddByteStream(std::unique_ptr<ByteStreamReader> stream_reader, | 36 void AddByteStream(std::unique_ptr<ByteStreamReader> stream_reader, |
| 36 int64_t offset, | 37 int64_t offset, |
| 37 int64_t length) override; | 38 int64_t length) override; |
| 38 MOCK_METHOD3(DoAddByteStream, | 39 MOCK_METHOD3(DoAddByteStream, |
| 39 void(ByteStreamReader* stream_reader, | 40 void(ByteStreamReader* stream_reader, |
| 40 int64_t offset, | 41 int64_t offset, |
| 41 int64_t length)); | 42 int64_t length)); |
| 42 MOCK_METHOD2(AppendDataToFile, DownloadInterruptReason( | 43 MOCK_METHOD2(AppendDataToFile, DownloadInterruptReason( |
| 43 const char* data, size_t data_len)); | 44 const char* data, size_t data_len)); |
| 44 MOCK_METHOD1(Rename, DownloadInterruptReason( | 45 MOCK_METHOD1(Rename, DownloadInterruptReason( |
| (...skipping 19 matching lines...) Expand all Loading... |
| 64 MOCK_METHOD1(GetHash, bool(std::string* hash)); | 65 MOCK_METHOD1(GetHash, bool(std::string* hash)); |
| 65 MOCK_METHOD0(SendUpdate, void()); | 66 MOCK_METHOD0(SendUpdate, void()); |
| 66 MOCK_CONST_METHOD0(Id, int()); | 67 MOCK_CONST_METHOD0(Id, int()); |
| 67 MOCK_METHOD0(GetDownloadManager, DownloadManager*()); | 68 MOCK_METHOD0(GetDownloadManager, DownloadManager*()); |
| 68 MOCK_CONST_METHOD0(DebugString, std::string()); | 69 MOCK_CONST_METHOD0(DebugString, std::string()); |
| 69 }; | 70 }; |
| 70 | 71 |
| 71 } // namespace content | 72 } // namespace content |
| 72 | 73 |
| 73 #endif // CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_ | 74 #endif // CONTENT_BROWSER_DOWNLOAD_MOCK_DOWNLOAD_FILE_H_ |
| OLD | NEW |