OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/profiles/profile_metrics.h" |
| 6 |
| 7 #include "chrome/browser/mac/keystone_glue.h" |
| 8 |
| 9 void ProfileMetrics::UpdateReportedOSProfileStatistics( |
| 10 int active, int signedin) { |
| 11 DCHECK_GE(active, 0); |
| 12 DCHECK_GE(signedin, 0); |
| 13 [[KeystoneGlue defaultKeystoneGlue] |
| 14 updateProfileCountsWithNumProfiles:active |
| 15 numSignedInProfiles:signedin]; |
| 16 } |
OLD | NEW |