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

Unified Diff: third_party/WebKit/Source/platform/audio/DenormalDisabler.h

Issue 2811623003: Fix DenormalDisabler::FlushDenormalFloatToZero() renaming. (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/audio/DenormalDisabler.h
diff --git a/third_party/WebKit/Source/platform/audio/DenormalDisabler.h b/third_party/WebKit/Source/platform/audio/DenormalDisabler.h
index 4cddba8c67805133bd3cc51570e77b45c7d89f00..ceb14dea747a7fab4ff86e5b5a25926d4ef52d74 100644
--- a/third_party/WebKit/Source/platform/audio/DenormalDisabler.h
+++ b/third_party/WebKit/Source/platform/audio/DenormalDisabler.h
@@ -138,7 +138,7 @@ class DenormalDisabler {
// Assume the worst case that other architectures and compilers
// need to flush denormals to zero manually.
- static inline float flushDenormalFloatToZero(float f) {
+ static inline float FlushDenormalFloatToZero(float f) {
return (fabs(f) < FLT_MIN) ? 0.0f : f;
}
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698