| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/platform_state_store.h
" | 5 #include "chrome/browser/safe_browsing/incident_reporting/platform_state_store.h
" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/message_loop/message_loop.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
| 11 #include "base/test/test_reg_util_win.h" | 12 #include "base/test/test_reg_util_win.h" |
| 12 #include "base/test/test_simple_task_runner.h" | 13 #include "base/test/test_simple_task_runner.h" |
| 13 #include "base/win/registry.h" | 14 #include "base/win/registry.h" |
| 14 #include "chrome/browser/prefs/browser_prefs.h" | 15 #include "chrome/browser/prefs/browser_prefs.h" |
| 15 #include "chrome/test/base/testing_browser_process.h" | 16 #include "chrome/test/base/testing_browser_process.h" |
| 16 #include "chrome/test/base/testing_profile.h" | 17 #include "chrome/test/base/testing_profile.h" |
| 17 #include "chrome/test/base/testing_profile_manager.h" | 18 #include "chrome/test/base/testing_profile_manager.h" |
| 18 #include "components/pref_registry/pref_registry_syncable.h" | 19 #include "components/pref_registry/pref_registry_syncable.h" |
| 19 #include "components/prefs/pref_notifier_impl.h" | 20 #include "components/prefs/pref_notifier_impl.h" |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 | 177 |
| 177 std::string data; | 178 std::string data; |
| 178 PlatformStateStoreLoadResult result = ReadStoreData(profile_, &data); | 179 PlatformStateStoreLoadResult result = ReadStoreData(profile_, &data); |
| 179 EXPECT_EQ(PlatformStateStoreLoadResult::CLEARED_DATA, result); | 180 EXPECT_EQ(PlatformStateStoreLoadResult::CLEARED_DATA, result); |
| 180 EXPECT_EQ(std::string(), data); | 181 EXPECT_EQ(std::string(), data); |
| 181 AssertTestDataIsAbsent(); | 182 AssertTestDataIsAbsent(); |
| 182 } | 183 } |
| 183 | 184 |
| 184 } // namespace platform_state_store | 185 } // namespace platform_state_store |
| 185 } // namespace safe_browsing | 186 } // namespace safe_browsing |
| OLD | NEW |