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

Side by Side Diff: chrome/browser/password_manager/native_backend_kwallet_x_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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <stddef.h> 5 #include <stddef.h>
6 #include <stdint.h> 6 #include <stdint.h>
7 7
8 #include <algorithm> 8 #include <algorithm>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
11 #include <string> 11 #include <string>
12 #include <utility> 12 #include <utility>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/bind.h" 15 #include "base/bind.h"
16 #include "base/location.h" 16 #include "base/location.h"
17 #include "base/pickle.h" 17 #include "base/pickle.h"
18 #include "base/single_thread_task_runner.h" 18 #include "base/single_thread_task_runner.h"
19 #include "base/stl_util.h" 19 #include "base/stl_util.h"
20 #include "base/strings/utf_string_conversions.h" 20 #include "base/strings/utf_string_conversions.h"
21 #include "base/synchronization/waitable_event.h" 21 #include "base/synchronization/waitable_event.h"
22 #include "base/thread_task_runner_handle.h" 22 #include "base/threading/thread_task_runner_handle.h"
23 #include "chrome/browser/password_manager/native_backend_kwallet_x.h" 23 #include "chrome/browser/password_manager/native_backend_kwallet_x.h"
24 #include "chrome/test/base/testing_profile.h" 24 #include "chrome/test/base/testing_profile.h"
25 #include "components/autofill/core/common/password_form.h" 25 #include "components/autofill/core/common/password_form.h"
26 #include "components/password_manager/core/common/password_manager_pref_names.h" 26 #include "components/password_manager/core/common/password_manager_pref_names.h"
27 #include "components/prefs/pref_service.h" 27 #include "components/prefs/pref_service.h"
28 #include "content/public/test/test_browser_thread.h" 28 #include "content/public/test/test_browser_thread.h"
29 #include "dbus/message.h" 29 #include "dbus/message.h"
30 #include "dbus/mock_bus.h" 30 #include "dbus/mock_bus.h"
31 #include "dbus/mock_object_proxy.h" 31 #include "dbus/mock_object_proxy.h"
32 #include "dbus/object_path.h" 32 #include "dbus/object_path.h"
(...skipping 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after
1384 } 1384 }
1385 1385
1386 TEST_F(NativeBackendKWalletPickleTest, CheckVersion5Pickle) { 1386 TEST_F(NativeBackendKWalletPickleTest, CheckVersion5Pickle) {
1387 CheckVersion5Pickle(); 1387 CheckVersion5Pickle();
1388 } 1388 }
1389 1389
1390 TEST_F(NativeBackendKWalletPickleTest, CheckVersion6Pickle) { 1390 TEST_F(NativeBackendKWalletPickleTest, CheckVersion6Pickle) {
1391 CheckVersion6Pickle(false); 1391 CheckVersion6Pickle(false);
1392 CheckVersion6Pickle(true); 1392 CheckVersion6Pickle(true);
1393 } 1393 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698