blob: a6eb7cfb7ad5bb8b952a99902180c59eaf3390f5 [file] [log] [blame]
// Copyright 2021 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/share/share_metrics.h"
#include "base/metrics/histogram_macros.h"
#include "base/metrics/user_metrics.h"
namespace share {
const char kAnyShareStarted[] = "Sharing.AnyShareStartedDesktop";
void LogShareSourceDesktop(ShareSourceDesktop source) {
UMA_HISTOGRAM_ENUMERATION(kAnyShareStarted, source);
}
} // namespace share