blob: af7f6f4b9c82aee9826b319238cc1d5a03eef468 [file] [log] [blame]
Avi Drissman3a215d1e2022-09-07 19:43:091// Copyright 2013 The Chromium Authors
James Cookb0bf8e82017-04-09 17:01:442// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "ash/multi_profile_uma.h"
6
7#include "base/metrics/histogram_macros.h"
8
9namespace ash {
10
11// static
James Cookb0bf8e82017-04-09 17:01:4412void MultiProfileUMA::RecordSwitchActiveUser(SwitchActiveUserAction action) {
13 UMA_HISTOGRAM_ENUMERATION("MultiProfile.SwitchActiveUserUIPath", action,
14 NUM_SWITCH_ACTIVE_USER_ACTIONS);
15}
16
James Cookb0bf8e82017-04-09 17:01:4417} // namespace ash