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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 WebHistoryServiceFactory::GetInstance(), | 192 WebHistoryServiceFactory::GetInstance(), |
193 static_cast<BrowserContextKeyedServiceFactory::TestingFactoryFunction>( | 193 static_cast<BrowserContextKeyedServiceFactory::TestingFactoryFunction>( |
194 NULL))); | 194 NULL))); |
195 | 195 |
196 // Create prefs for the profile with safe browsing enabled or not. | 196 // Create prefs for the profile with safe browsing enabled or not. |
197 std::unique_ptr<syncable_prefs::TestingPrefServiceSyncable> prefs( | 197 std::unique_ptr<syncable_prefs::TestingPrefServiceSyncable> prefs( |
198 new syncable_prefs::TestingPrefServiceSyncable); | 198 new syncable_prefs::TestingPrefServiceSyncable); |
199 chrome::RegisterUserProfilePrefs(prefs->registry()); | 199 chrome::RegisterUserProfilePrefs(prefs->registry()); |
200 prefs->SetBoolean(prefs::kSafeBrowsingEnabled, | 200 prefs->SetBoolean(prefs::kSafeBrowsingEnabled, |
201 safe_browsing_opt_in != SAFE_BROWSING_OPT_OUT); | 201 safe_browsing_opt_in != SAFE_BROWSING_OPT_OUT); |
202 prefs->SetBoolean(GetExtendedReportingPrefName(), | 202 SetExtendedReportingPref(prefs.get(), |
203 safe_browsing_opt_in == EXTENDED_REPORTING_OPT_IN); | 203 safe_browsing_opt_in == EXTENDED_REPORTING_OPT_IN); |
204 | 204 |
205 TestingProfile* profile = profile_manager_->CreateTestingProfile( | 205 TestingProfile* profile = profile_manager_->CreateTestingProfile( |
206 profile_name, std::move(prefs), | 206 profile_name, std::move(prefs), |
207 base::UTF8ToUTF16(profile_name), // user_name | 207 base::UTF8ToUTF16(profile_name), // user_name |
208 0, // avatar_id | 208 0, // avatar_id |
209 std::string(), // supervised_user_id | 209 std::string(), // supervised_user_id |
210 factories); | 210 factories); |
211 | 211 |
212 return profile; | 212 return profile; |
213 } | 213 } |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 base::Bind(&LastDownloadFinderTest::OnLastDownload, | 465 base::Bind(&LastDownloadFinderTest::OnLastDownload, |
466 base::Unretained(this), &last_binary_download, | 466 base::Unretained(this), &last_binary_download, |
467 &last_non_binary_download, run_loop.QuitClosure()))); | 467 &last_non_binary_download, run_loop.QuitClosure()))); |
468 | 468 |
469 run_loop.Run(); | 469 run_loop.Run(); |
470 | 470 |
471 ASSERT_TRUE(last_binary_download); | 471 ASSERT_TRUE(last_binary_download); |
472 } | 472 } |
473 | 473 |
474 } // namespace safe_browsing | 474 } // namespace safe_browsing |
OLD | NEW |