Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2137)

Side by Side Diff: chrome/browser/safe_browsing/safe_browsing_database_unittest.cc

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 // Unit tests for the SafeBrowsing storage system. 5 // Unit tests for the SafeBrowsing storage system.
6 6
7 #include "chrome/browser/safe_browsing/safe_browsing_database.h" 7 #include "chrome/browser/safe_browsing/safe_browsing_database.h"
8 8
9 #include <stddef.h>
10
9 #include "base/files/file_util.h" 11 #include "base/files/file_util.h"
10 #include "base/files/scoped_temp_dir.h" 12 #include "base/files/scoped_temp_dir.h"
11 #include "base/logging.h" 13 #include "base/logging.h"
12 #include "base/message_loop/message_loop.h" 14 #include "base/message_loop/message_loop.h"
13 #include "base/sha1.h" 15 #include "base/sha1.h"
14 #include "base/strings/string_number_conversions.h" 16 #include "base/strings/string_number_conversions.h"
15 #include "base/strings/string_split.h" 17 #include "base/strings/string_split.h"
16 #include "base/test/test_simple_task_runner.h" 18 #include "base/test/test_simple_task_runner.h"
17 #include "base/time/time.h" 19 #include "base/time/time.h"
18 #include "chrome/browser/safe_browsing/chunk.pb.h" 20 #include "chrome/browser/safe_browsing/chunk.pb.h"
(...skipping 2206 matching lines...) Expand 10 before | Expand all | Expand 10 after
2225 ASSERT_EQ(1U, prefix_hits.size()); 2227 ASSERT_EQ(1U, prefix_hits.size());
2226 EXPECT_EQ(SBPrefixForString(kExampleCollision), prefix_hits[0]); 2228 EXPECT_EQ(SBPrefixForString(kExampleCollision), prefix_hits[0]);
2227 EXPECT_TRUE(cache_hits.empty()); 2229 EXPECT_TRUE(cache_hits.empty());
2228 2230
2229 // This prefix collides, but no full hash match. 2231 // This prefix collides, but no full hash match.
2230 EXPECT_FALSE(database_->ContainsBrowseUrl( 2232 EXPECT_FALSE(database_->ContainsBrowseUrl(
2231 GURL(std::string("http://") + kExampleFine), &prefix_hits, &cache_hits)); 2233 GURL(std::string("http://") + kExampleFine), &prefix_hits, &cache_hits));
2232 } 2234 }
2233 2235
2234 } // namespace safe_browsing 2236 } // namespace safe_browsing
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/safe_browsing_database.cc ('k') | chrome/browser/safe_browsing/safe_browsing_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698