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

Unified Diff: Source/core/platform/audio/AudioArray.h

Issue 20294002: Fix trailing whitespace in .cpp, .h, and .idl files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years, 5 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 | « Source/core/platform/animation/TimingFunction.h ('k') | Source/core/platform/audio/AudioBus.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/audio/AudioArray.h
diff --git a/Source/core/platform/audio/AudioArray.h b/Source/core/platform/audio/AudioArray.h
index a70903b86a2f8ae2bd7a1440c7d4f9f3888ad876..f611a2b10ab61b186a58e537dbc73ce64639d5b9 100644
--- a/Source/core/platform/audio/AudioArray.h
+++ b/Source/core/platform/audio/AudioArray.h
@@ -57,7 +57,7 @@ public:
// and copyToRange(). Also check for integer overflow.
if (n > std::numeric_limits<unsigned>::max() / sizeof(T))
CRASH();
-
+
unsigned initialSize = sizeof(T) * n;
#if USE(WEBAUDIO_FFMPEG) || USE(WEBAUDIO_OPENMAX_DL_FFT)
@@ -68,9 +68,9 @@ public:
if (m_allocation)
fastFree(m_allocation);
-
+
bool isAllocationGood = false;
-
+
while (!isAllocationGood) {
// Initially we try to allocate the exact size, but if it's not aligned
// then we'll have to reallocate and from then on allocate extra.
« no previous file with comments | « Source/core/platform/animation/TimingFunction.h ('k') | Source/core/platform/audio/AudioBus.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698