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

Side by Side Diff: chrome/browser/safe_browsing/incident_reporting/off_domain_inclusion_detector_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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "base/bind.h" 5 #include "base/bind.h"
6 #include "base/files/file_util.h" 6 #include "base/files/file_util.h"
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/macros.h"
8 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
10 #include "base/run_loop.h" 11 #include "base/run_loop.h"
11 #include "base/strings/string_number_conversions.h" 12 #include "base/strings/string_number_conversions.h"
12 #include "base/strings/utf_string_conversions.h" 13 #include "base/strings/utf_string_conversions.h"
13 #include "base/time/time.h" 14 #include "base/time/time.h"
14 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 15 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
15 #include "chrome/browser/history/chrome_history_client.h" 16 #include "chrome/browser/history/chrome_history_client.h"
16 #include "chrome/browser/history/history_service_factory.h" 17 #include "chrome/browser/history/history_service_factory.h"
17 #include "chrome/browser/history/web_history_service_factory.h" 18 #include "chrome/browser/history/web_history_service_factory.h"
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 } 596 }
596 597
597 INSTANTIATE_TEST_CASE_P(OffDomainInclusionDetectorTestInstance, 598 INSTANTIATE_TEST_CASE_P(OffDomainInclusionDetectorTestInstance,
598 OffDomainInclusionDetectorTest, 599 OffDomainInclusionDetectorTest,
599 Values(TestCase::WHITELISTED, 600 Values(TestCase::WHITELISTED,
600 TestCase::IN_HISTORY, 601 TestCase::IN_HISTORY,
601 TestCase::IN_HISTORY_AND_WHITELISTED, 602 TestCase::IN_HISTORY_AND_WHITELISTED,
602 TestCase::UNKNOWN)); 603 TestCase::UNKNOWN));
603 604
604 } // namespace safe_browsing 605 } // namespace safe_browsing
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698