OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef COMPONENTS_DOWNLOAD_INTERNAL_TEST_ENTRY_UTILS_H_ |
| 6 #define COMPONENTS_DOWNLOAD_INTERNAL_TEST_ENTRY_UTILS_H_ |
| 7 |
| 8 #include <string> |
| 9 #include <vector> |
| 10 |
| 11 #include "components/download/internal/entry.h" |
| 12 |
| 13 namespace download { |
| 14 namespace test { |
| 15 |
| 16 bool SuperficialEntryCompare(const Entry* const& expected, |
| 17 const Entry* const& actual); |
| 18 |
| 19 bool SuperficialEntryListCompare(const std::vector<Entry*>& a, |
| 20 const std::vector<Entry*>& b); |
| 21 |
| 22 Entry BuildEntry(DownloadClient client, const std::string& guid); |
| 23 |
| 24 } // namespace test |
| 25 } // namespace download |
| 26 |
| 27 #endif // COMPONENTS_DOWNLOAD_INTERNAL_TEST_ENTRY_UTILS_H_ |
OLD | NEW |