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.
5 #include "chrome/browser/ui/app_list/search/search_util.h"
7 #include "base/metrics/histogram.h"
10 const char kAppListSearchResultOpenTypeHistogram
[] =
11 "Apps.AppListSearchResultOpenType";
16 void RecordHistogram(SearchResultType type
) {
17 UMA_HISTOGRAM_ENUMERATION(
18 kAppListSearchResultOpenTypeHistogram
, type
, SEARCH_RESULT_TYPE_BOUNDARY
);
21 } // namespace app_list