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

Unified Diff: Source/core/platform/audio/HRTFDatabaseLoader.cpp

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/audio/HRTFDatabaseLoader.h ('k') | Source/core/platform/audio/HRTFElevation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/audio/HRTFDatabaseLoader.cpp
diff --git a/Source/core/platform/audio/HRTFDatabaseLoader.cpp b/Source/core/platform/audio/HRTFDatabaseLoader.cpp
index 32b7128aadeafa5763a456bd85fff30a5933d4c1..47219ec6365a10ad63685df1a0bf1223465a2060 100644
--- a/Source/core/platform/audio/HRTFDatabaseLoader.cpp
+++ b/Source/core/platform/audio/HRTFDatabaseLoader.cpp
@@ -45,7 +45,7 @@ PassRefPtr<HRTFDatabaseLoader> HRTFDatabaseLoader::createAndLoadAsynchronouslyIf
ASSERT(isMainThread());
RefPtr<HRTFDatabaseLoader> loader;
-
+
if (!s_loaderMap)
s_loaderMap = adoptPtr(new LoaderMap()).leakPtr();
@@ -104,7 +104,7 @@ void HRTFDatabaseLoader::loadAsynchronously()
ASSERT(isMainThread());
MutexLocker locker(m_threadLock);
-
+
if (!m_hrtfDatabase.get() && !m_databaseLoaderThread) {
// Start the asynchronous database loading process.
m_databaseLoaderThread = createThread(databaseLoaderEntry, this, "HRTF database loader");
@@ -119,7 +119,7 @@ bool HRTFDatabaseLoader::isLoaded() const
void HRTFDatabaseLoader::waitForLoaderThreadCompletion()
{
MutexLocker locker(m_threadLock);
-
+
// waitForThreadCompletion() should not be called twice for the same thread.
if (m_databaseLoaderThread)
waitForThreadCompletion(m_databaseLoaderThread);
« no previous file with comments | « Source/core/platform/audio/HRTFDatabaseLoader.h ('k') | Source/core/platform/audio/HRTFElevation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698