| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "chrome/utility/safe_browsing/mac/hfs.h" | 5 #include "chrome/utility/safe_browsing/mac/hfs.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 #include <stdint.h> |
| 9 |
| 7 #include "base/files/file.h" | 10 #include "base/files/file.h" |
| 8 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/macros.h" |
| 9 #include "base/strings/string_piece.h" | 13 #include "base/strings/string_piece.h" |
| 10 #include "base/strings/string_util.h" | 14 #include "base/strings/string_util.h" |
| 11 #include "base/strings/utf_string_conversions.h" | 15 #include "base/strings/utf_string_conversions.h" |
| 12 #include "chrome/utility/safe_browsing/mac/dmg_test_utils.h" | 16 #include "chrome/utility/safe_browsing/mac/dmg_test_utils.h" |
| 13 #include "chrome/utility/safe_browsing/mac/read_stream.h" | 17 #include "chrome/utility/safe_browsing/mac/read_stream.h" |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
| 15 | 19 |
| 16 namespace safe_browsing { | 20 namespace safe_browsing { |
| 17 namespace dmg { | 21 namespace dmg { |
| 18 namespace { | 22 namespace { |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 | 223 |
| 220 INSTANTIATE_TEST_CASE_P(HFSIteratorTest, | 224 INSTANTIATE_TEST_CASE_P(HFSIteratorTest, |
| 221 HFSFileReadTest, | 225 HFSFileReadTest, |
| 222 testing::Values( | 226 testing::Values( |
| 223 "hfs_plus.img", | 227 "hfs_plus.img", |
| 224 "hfsx_case_sensitive.img")); | 228 "hfsx_case_sensitive.img")); |
| 225 | 229 |
| 226 } // namespace | 230 } // namespace |
| 227 } // namespace dmg | 231 } // namespace dmg |
| 228 } // namespace safe_browsing | 232 } // namespace safe_browsing |
| OLD | NEW |