blob: 56c44b1734c511c279660ab487500ffbc6582edc [file] [log] [blame]
James Cookb0bf8e82017-04-09 17:01:441// Copyright 2013 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 "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