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

Side by Side Diff: chrome/browser/signin/signin_global_error_unittest.cc

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/signin/signin_global_error.h" 5 #include "chrome/browser/signin/signin_global_error.h"
6 6
7 #include <stddef.h>
8
9 #include "base/macros.h"
7 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
8 #include "base/prefs/pref_service.h" 11 #include "base/prefs/pref_service.h"
9 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
10 #include "base/test/histogram_tester.h" 13 #include "base/test/histogram_tester.h"
11 #include "chrome/browser/profiles/profile_info_cache.h" 14 #include "chrome/browser/profiles/profile_info_cache.h"
12 #include "chrome/browser/profiles/profile_manager.h" 15 #include "chrome/browser/profiles/profile_manager.h"
13 #include "chrome/browser/profiles/profile_metrics.h" 16 #include "chrome/browser/profiles/profile_metrics.h"
14 #include "chrome/browser/signin/fake_profile_oauth2_token_service_builder.h" 17 #include "chrome/browser/signin/fake_profile_oauth2_token_service_builder.h"
15 #include "chrome/browser/signin/fake_signin_manager_builder.h" 18 #include "chrome/browser/signin/fake_signin_manager_builder.h"
16 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h" 19 #include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 164
162 ProfileMetrics::LogNumberOfProfiles( 165 ProfileMetrics::LogNumberOfProfiles(
163 testing_profile_manager()->profile_manager()); 166 testing_profile_manager()->profile_manager());
164 167
165 if (table[i].is_error) 168 if (table[i].is_error)
166 histogram_tester.ExpectBucketCount("Signin.AuthError", i, 1); 169 histogram_tester.ExpectBucketCount("Signin.AuthError", i, 1);
167 histogram_tester.ExpectBucketCount( 170 histogram_tester.ExpectBucketCount(
168 "Profile.NumberOfProfilesWithAuthErrors", table[i].is_error, 1); 171 "Profile.NumberOfProfilesWithAuthErrors", table[i].is_error, 1);
169 } 172 }
170 } 173 }
OLDNEW
« no previous file with comments | « chrome/browser/signin/signin_global_error_factory.h ('k') | chrome/browser/signin/signin_manager_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698