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

Unified Diff: third_party/WebKit/Source/modules/webaudio/OfflineAudioContext.cpp

Issue 2269543003: Minor cosmetic changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | « third_party/WebKit/Source/modules/webaudio/AudioNode.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/webaudio/OfflineAudioContext.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/OfflineAudioContext.cpp b/third_party/WebKit/Source/modules/webaudio/OfflineAudioContext.cpp
index be04af8c6bceb4a9a094702b472ff7b05bb456e1..0a5699da99a0a795ead0eb89edbf14531c76573d 100644
--- a/third_party/WebKit/Source/modules/webaudio/OfflineAudioContext.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/OfflineAudioContext.cpp
@@ -92,7 +92,7 @@ OfflineAudioContext* OfflineAudioContext::create(ExecutionContext* context, unsi
}
#if DEBUG_AUDIONODE_REFERENCES
- fprintf(stderr, "[%p]: OfflineAudioContext::OfflineAudioContext()\n", audioContext);
+ fprintf(stderr, "[%16p]: OfflineAudioContext::OfflineAudioContext()\n", audioContext);
#endif
DEFINE_STATIC_LOCAL(SparseHistogram, offlineContextChannelCountHistogram,
("WebAudio.OfflineAudioContext.ChannelCount"));
@@ -141,7 +141,7 @@ OfflineAudioContext::OfflineAudioContext(Document* document, unsigned numberOfCh
OfflineAudioContext::~OfflineAudioContext()
{
#if DEBUG_AUDIONODE_REFERENCES
- fprintf(stderr, "[%p]: OfflineAudioContext::~OfflineAudioContext()\n", this);
+ fprintf(stderr, "[%16p]: OfflineAudioContext::~OfflineAudioContext()\n", this);
#endif
}
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/AudioNode.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698