Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(511)

Unified Diff: net/disk_cache/simple/simple_histogram_macros.h

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698