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

Unified Diff: webrtc/base/logging.cc

Issue 1342543004: Consolidate constructormagic macros with Chromium version and remove Chromium override. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 5 years, 3 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 | « webrtc/base/constructormagic.h ('k') | webrtc/base/natserver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/logging.cc
diff --git a/webrtc/base/logging.cc b/webrtc/base/logging.cc
index affbb03bd4d80dadd02da99afda95a9801a30aa2..7e308c2693185cdf8b15863ef47b5544ae3468c6 100644
--- a/webrtc/base/logging.cc
+++ b/webrtc/base/logging.cc
@@ -206,8 +206,7 @@ LogMessage::~LogMessage() {
}
uint32 delay = TimeSince(before);
if (delay >= warn_slow_logs_delay_) {
- LogMessage slow_log_warning =
- rtc::LogMessage(__FILE__, __LINE__, LS_WARNING);
+ rtc::LogMessage slow_log_warning(__FILE__, __LINE__, LS_WARNING);
// If our warning is slow, we don't want to warn about it, because
// that would lead to inifinite recursion. So, give a really big
// number for the delay threshold.
« no previous file with comments | « webrtc/base/constructormagic.h ('k') | webrtc/base/natserver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698