| OLD | NEW |
| 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> |
| 6 #include <stdint.h> |
| 7 |
| 5 #include <algorithm> | 8 #include <algorithm> |
| 6 #include <map> | 9 #include <map> |
| 7 #include <set> | 10 #include <set> |
| 8 #include <string> | 11 #include <string> |
| 9 #include <vector> | 12 #include <vector> |
| 10 | 13 |
| 11 #include "base/bind.h" | 14 #include "base/bind.h" |
| 12 #include "base/location.h" | 15 #include "base/location.h" |
| 13 #include "base/pickle.h" | 16 #include "base/pickle.h" |
| 14 #include "base/prefs/pref_service.h" | 17 #include "base/prefs/pref_service.h" |
| (...skipping 1275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1290 } | 1293 } |
| 1291 | 1294 |
| 1292 TEST_F(NativeBackendKWalletPickleTest, CheckVersion5Pickle) { | 1295 TEST_F(NativeBackendKWalletPickleTest, CheckVersion5Pickle) { |
| 1293 CheckVersion5Pickle(); | 1296 CheckVersion5Pickle(); |
| 1294 } | 1297 } |
| 1295 | 1298 |
| 1296 TEST_F(NativeBackendKWalletPickleTest, CheckVersion6Pickle) { | 1299 TEST_F(NativeBackendKWalletPickleTest, CheckVersion6Pickle) { |
| 1297 CheckVersion6Pickle(false); | 1300 CheckVersion6Pickle(false); |
| 1298 CheckVersion6Pickle(true); | 1301 CheckVersion6Pickle(true); |
| 1299 } | 1302 } |
| OLD | NEW |