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

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

Issue 2866093002: blink: m_foo -> foo_ in logging strings. (Closed)
Patch Set: rebase Created 3 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: third_party/WebKit/Source/platform/audio/PushPullFIFO.cpp
diff --git a/third_party/WebKit/Source/platform/audio/PushPullFIFO.cpp b/third_party/WebKit/Source/platform/audio/PushPullFIFO.cpp
index 7d18c6ed93372e57027c06a58bbb812e2d467a67..e23368ff5f6cb014dc9cad4f49df6f856e29eed1 100644
--- a/third_party/WebKit/Source/platform/audio/PushPullFIFO.cpp
+++ b/third_party/WebKit/Source/platform/audio/PushPullFIFO.cpp
@@ -100,12 +100,12 @@ size_t PushPullFIFO::Pull(AudioBus* output_bus, size_t frames_requested) {
}
if (frames_requested > fifo_length_) {
LOG(WARNING) << "[WebAudio/PushPullFIFO::pull <" << static_cast<void*>(this)
- << ">] framesRequested > m_fifoLength (" << frames_requested
+ << ">] framesRequested > fifo_length_ (" << frames_requested
<< " > " << fifo_length_ << ")";
}
if (index_read_ >= fifo_length_) {
LOG(WARNING) << "[WebAudio/PushPullFIFO::pull <" << static_cast<void*>(this)
- << ">] m_indexRead >= m_fifoLength (" << index_read_
+ << ">] index_read_ >= fifo_length_ (" << index_read_
<< " >= " << fifo_length_ << ")";
}
#endif

Powered by Google App Engine
This is Rietveld 408576698