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 "chrome/browser/safe_browsing/prefix_set.h" | 5 #include "chrome/browser/safe_browsing/prefix_set.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <iterator> | 8 #include <iterator> |
| 9 #include <set> |
| 10 #include <string> |
9 | 11 |
10 #include "base/file_util.h" | 12 #include "base/file_util.h" |
11 #include "base/files/scoped_file.h" | 13 #include "base/files/scoped_file.h" |
12 #include "base/files/scoped_temp_dir.h" | 14 #include "base/files/scoped_temp_dir.h" |
13 #include "base/logging.h" | 15 #include "base/logging.h" |
14 #include "base/md5.h" | 16 #include "base/md5.h" |
15 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
16 #include "base/path_service.h" | 18 #include "base/path_service.h" |
17 #include "base/rand_util.h" | 19 #include "base/rand_util.h" |
18 #include "base/strings/string_number_conversions.h" | 20 #include "base/strings/string_number_conversions.h" |
(...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
733 const SBFullHash kHash2 = SBFullHashForString("www.evil.com/phishing.html"); | 735 const SBFullHash kHash2 = SBFullHashForString("www.evil.com/phishing.html"); |
734 | 736 |
735 EXPECT_TRUE(prefix_set->Exists(kHash1)); | 737 EXPECT_TRUE(prefix_set->Exists(kHash1)); |
736 EXPECT_TRUE(prefix_set->Exists(kHash2)); | 738 EXPECT_TRUE(prefix_set->Exists(kHash2)); |
737 EXPECT_FALSE(prefix_set->PrefixExists(kHash1.prefix)); | 739 EXPECT_FALSE(prefix_set->PrefixExists(kHash1.prefix)); |
738 EXPECT_FALSE(prefix_set->PrefixExists(kHash2.prefix)); | 740 EXPECT_FALSE(prefix_set->PrefixExists(kHash2.prefix)); |
739 } | 741 } |
740 #endif | 742 #endif |
741 | 743 |
742 } // namespace safe_browsing | 744 } // namespace safe_browsing |
OLD | NEW |