| OLD | NEW |
| 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 "chrome/browser/safe_browsing/incident_reporting/last_download_finder.h
" | 5 #include "chrome/browser/safe_browsing/incident_reporting/last_download_finder.h
" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 #include "chrome/test/base/testing_profile.h" | 36 #include "chrome/test/base/testing_profile.h" |
| 37 #include "chrome/test/base/testing_profile_manager.h" | 37 #include "chrome/test/base/testing_profile_manager.h" |
| 38 #include "components/history/content/browser/content_visit_delegate.h" | 38 #include "components/history/content/browser/content_visit_delegate.h" |
| 39 #include "components/history/content/browser/download_conversions.h" | 39 #include "components/history/content/browser/download_conversions.h" |
| 40 #include "components/history/content/browser/history_database_helper.h" | 40 #include "components/history/content/browser/history_database_helper.h" |
| 41 #include "components/history/core/browser/download_constants.h" | 41 #include "components/history/core/browser/download_constants.h" |
| 42 #include "components/history/core/browser/download_row.h" | 42 #include "components/history/core/browser/download_row.h" |
| 43 #include "components/history/core/browser/history_constants.h" | 43 #include "components/history/core/browser/history_constants.h" |
| 44 #include "components/history/core/browser/history_database_params.h" | 44 #include "components/history/core/browser/history_database_params.h" |
| 45 #include "components/history/core/browser/history_service.h" | 45 #include "components/history/core/browser/history_service.h" |
| 46 #include "components/safe_browsing/common/safe_browsing_prefs.h" |
| 46 #include "components/safe_browsing/csd.pb.h" | 47 #include "components/safe_browsing/csd.pb.h" |
| 47 #include "components/safe_browsing_db/safe_browsing_prefs.h" | |
| 48 #include "components/sync_preferences/testing_pref_service_syncable.h" | 48 #include "components/sync_preferences/testing_pref_service_syncable.h" |
| 49 #include "content/public/test/test_browser_thread_bundle.h" | 49 #include "content/public/test/test_browser_thread_bundle.h" |
| 50 #include "content/public/test/test_utils.h" | 50 #include "content/public/test/test_utils.h" |
| 51 #include "testing/gtest/include/gtest/gtest.h" | 51 #include "testing/gtest/include/gtest/gtest.h" |
| 52 | 52 |
| 53 namespace { | 53 namespace { |
| 54 | 54 |
| 55 // A BrowserContextKeyedServiceFactory::TestingFactoryFunction that creates a | 55 // A BrowserContextKeyedServiceFactory::TestingFactoryFunction that creates a |
| 56 // HistoryService for a TestingProfile. | 56 // HistoryService for a TestingProfile. |
| 57 std::unique_ptr<KeyedService> BuildHistoryService( | 57 std::unique_ptr<KeyedService> BuildHistoryService( |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 base::Bind(&LastDownloadFinderTest::OnLastDownload, | 467 base::Bind(&LastDownloadFinderTest::OnLastDownload, |
| 468 base::Unretained(this), &last_binary_download, | 468 base::Unretained(this), &last_binary_download, |
| 469 &last_non_binary_download, run_loop.QuitClosure()))); | 469 &last_non_binary_download, run_loop.QuitClosure()))); |
| 470 | 470 |
| 471 run_loop.Run(); | 471 run_loop.Run(); |
| 472 | 472 |
| 473 ASSERT_TRUE(last_binary_download); | 473 ASSERT_TRUE(last_binary_download); |
| 474 } | 474 } |
| 475 | 475 |
| 476 } // namespace safe_browsing | 476 } // namespace safe_browsing |
| OLD | NEW |