| Index: chrome/browser/profiles/profile_metrics_mac.mm
|
| diff --git a/chrome/browser/profiles/profile_metrics_mac.mm b/chrome/browser/profiles/profile_metrics_mac.mm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6468799da5f4cd2e71e71661d80b2c7eb70a1574
|
| --- /dev/null
|
| +++ b/chrome/browser/profiles/profile_metrics_mac.mm
|
| @@ -0,0 +1,16 @@
|
| +// Copyright (c) 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "chrome/browser/profiles/profile_metrics.h"
|
| +
|
| +#include "chrome/browser/mac/keystone_glue.h"
|
| +
|
| +#if defined(OS_MACOSX)
|
| +void ProfileMetrics::UpdateReportedOSProfileStatistics(
|
| + int active, int signedin) {
|
| + [[KeystoneGlue defaultKeystoneGlue]
|
| + updateProfileCountsWithNumProfiles:active
|
| + numSignedInProfiles:signedin];
|
| +}
|
| +#endif
|
|
|