cache_metrics.cc 397 B

12345678910111213
  1. // Copyright (c) 2019 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. #include "net/base/cache_metrics.h"
  5. namespace net {
  6. void MediaCacheStatusResponseHistogram(MediaResponseCacheType type) {
  7. UMA_HISTOGRAM_ENUMERATION("Net.MediaCache.Response.EnabledOrDisabled", type);
  8. }
  9. } // namespace net