• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2019 The Chromium Authors
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 "net/base/cache_metrics.h"
6 
7 namespace net {
8 
MediaCacheStatusResponseHistogram(MediaResponseCacheType type)9 void MediaCacheStatusResponseHistogram(MediaResponseCacheType type) {
10   UMA_HISTOGRAM_ENUMERATION("Net.MediaCache.Response.EnabledOrDisabled", type);
11 }
12 
13 }  // namespace net
14