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

Side by Side Diff: chrome/browser/safe_browsing/incident_reporting/platform_state_store_win_unittest.cc

Issue 1967773004: Fix include path for moved thread_task_runner_handle.h header in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393013 Created 4 years, 7 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 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/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
11 #include "base/test/test_reg_util_win.h" 11 #include "base/test/test_reg_util_win.h"
12 #include "base/test/test_simple_task_runner.h" 12 #include "base/test/test_simple_task_runner.h"
13 #include "base/thread_task_runner_handle.h" 13 #include "base/threading/thread_task_runner_handle.h"
14 #include "base/win/registry.h" 14 #include "base/win/registry.h"
15 #include "chrome/browser/prefs/browser_prefs.h" 15 #include "chrome/browser/prefs/browser_prefs.h"
16 #include "chrome/test/base/testing_browser_process.h" 16 #include "chrome/test/base/testing_browser_process.h"
17 #include "chrome/test/base/testing_profile.h" 17 #include "chrome/test/base/testing_profile.h"
18 #include "chrome/test/base/testing_profile_manager.h" 18 #include "chrome/test/base/testing_profile_manager.h"
19 #include "components/pref_registry/pref_registry_syncable.h" 19 #include "components/pref_registry/pref_registry_syncable.h"
20 #include "components/prefs/pref_notifier_impl.h" 20 #include "components/prefs/pref_notifier_impl.h"
21 #include "components/prefs/testing_pref_store.h" 21 #include "components/prefs/testing_pref_store.h"
22 #include "components/syncable_prefs/testing_pref_service_syncable.h" 22 #include "components/syncable_prefs/testing_pref_service_syncable.h"
23 #include "testing/gtest/include/gtest/gtest.h" 23 #include "testing/gtest/include/gtest/gtest.h"
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 174
175 std::string data; 175 std::string data;
176 PlatformStateStoreLoadResult result = ReadStoreData(profile_, &data); 176 PlatformStateStoreLoadResult result = ReadStoreData(profile_, &data);
177 EXPECT_EQ(PlatformStateStoreLoadResult::CLEARED_DATA, result); 177 EXPECT_EQ(PlatformStateStoreLoadResult::CLEARED_DATA, result);
178 EXPECT_EQ(std::string(), data); 178 EXPECT_EQ(std::string(), data);
179 AssertTestDataIsAbsent(); 179 AssertTestDataIsAbsent();
180 } 180 }
181 181
182 } // namespace platform_state_store 182 } // namespace platform_state_store
183 } // namespace safe_browsing 183 } // namespace safe_browsing
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698