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 39fdff73ceb2155c2fdc028b6f9f2fad91d0391a..28f94389f0b745c3c53430b0001d874128f32c75 100644 |
--- a/net/disk_cache/simple/simple_histogram_macros.h |
+++ b/net/disk_cache/simple/simple_histogram_macros.h |
@@ -19,27 +19,27 @@ |
// TODO(pasko): add histograms for shader cache as soon as it becomes possible |
// for a user to get shader cache with the |SimpleBackendImpl| without altering |
// any flags. |
-#define SIMPLE_CACHE_UMA(uma_type, uma_name, cache_type, ...) \ |
- do { \ |
- switch (cache_type) { \ |
- case net::DISK_CACHE: \ |
- SIMPLE_CACHE_THUNK( \ |
- uma_type, ("SimpleCache.Http." uma_name, ##__VA_ARGS__)); \ |
- break; \ |
- case net::APP_CACHE: \ |
- SIMPLE_CACHE_THUNK( \ |
- uma_type, ("SimpleCache.App." uma_name, ##__VA_ARGS__)); \ |
- break; \ |
- case net::MEDIA_CACHE: \ |
- SIMPLE_CACHE_THUNK( \ |
- uma_type, ("SimpleCache.Media." uma_name, ##__VA_ARGS__)); \ |
- break; \ |
- case net::SHADER_CACHE: \ |
- break; \ |
- default: \ |
- NOTREACHED(); \ |
- break; \ |
- } \ |
+#define SIMPLE_CACHE_UMA(uma_type, uma_name, cache_type, ...) \ |
+ do { \ |
+ switch (cache_type) { \ |
+ case net::DISK_CACHE: \ |
+ SIMPLE_CACHE_THUNK(uma_type, \ |
+ ("SimpleCache.Http." uma_name, ##__VA_ARGS__)); \ |
+ break; \ |
+ case net::APP_CACHE: \ |
+ SIMPLE_CACHE_THUNK(uma_type, \ |
+ ("SimpleCache.App." uma_name, ##__VA_ARGS__)); \ |
+ break; \ |
+ case net::MEDIA_CACHE: \ |
+ SIMPLE_CACHE_THUNK(uma_type, \ |
+ ("SimpleCache.Media." uma_name, ##__VA_ARGS__)); \ |
+ break; \ |
+ case net::SHADER_CACHE: \ |
+ break; \ |
+ default: \ |
+ NOTREACHED(); \ |
+ break; \ |
+ } \ |
} while (0) |
#endif // NET_DISK_CACHE_SIMPLE_SIMPLE_HISTOGRAM_MACROS_H_ |