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

Side by Side Diff: chrome/browser/password_manager/native_backend_kwallet_x_unittest.cc

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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>
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698