| Index: net/disk_cache/simple/simple_histogram_macros.h
|
| diff --git a/net/disk_cache/simple/simple_histogram_macros.h b/net/disk_cache/simple/simple_histogram_macros.h
|
| index 2107ad466a7a6125e56783b5884c13b84cb3b336..204deb21f90533a8991c320042f0e0e29abc9818 100644
|
| --- a/net/disk_cache/simple/simple_histogram_macros.h
|
| +++ b/net/disk_cache/simple/simple_histogram_macros.h
|
| @@ -15,6 +15,8 @@
|
|
|
| #define SIMPLE_CACHE_THUNK(uma_type, args) UMA_HISTOGRAM_##uma_type args
|
|
|
| +// TODO(ttuttle): Add SimpleCache.Media.* histograms and call thunk in
|
| +// MEDIA_CACHE case below.
|
| #define SIMPLE_CACHE_UMA(uma_type, uma_name, cache_type, ...) \
|
| do { \
|
| switch (cache_type) { \
|
| @@ -26,6 +28,8 @@
|
| SIMPLE_CACHE_THUNK( \
|
| uma_type, ("SimpleCache.App." uma_name, ##__VA_ARGS__)); \
|
| break; \
|
| + case net::MEDIA_CACHE: \
|
| + break; \
|
| default: \
|
| NOTREACHED(); \
|
| break; \
|
|
|