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

Unified Diff: third_party/WebKit/Source/platform/audio/Reverb.cpp

Issue 2470233009: WTF/std normalization: replace WTF::Vector::first() with ::front() (Closed)
Patch Set: rebase Created 4 years, 1 month 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: third_party/WebKit/Source/platform/audio/Reverb.cpp
diff --git a/third_party/WebKit/Source/platform/audio/Reverb.cpp b/third_party/WebKit/Source/platform/audio/Reverb.cpp
index f5005ef6c7249d6178ae92d4486817e66a34c803..0f7b6abfa8fb3ac9f594eead05d9758c5a61eba5 100644
--- a/third_party/WebKit/Source/platform/audio/Reverb.cpp
+++ b/third_party/WebKit/Source/platform/audio/Reverb.cpp
@@ -268,7 +268,7 @@ void Reverb::reset() {
}
size_t Reverb::latencyFrames() const {
- return !m_convolvers.isEmpty() ? m_convolvers.first()->latencyFrames() : 0;
+ return !m_convolvers.isEmpty() ? m_convolvers.front()->latencyFrames() : 0;
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698