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

Unified Diff: third_party/libjingle/files/talk/base/logging.h

Issue 225001: Use base/logging from chrome/browser/sync. Add a macro to libjingle's (Closed)
Patch Set: Added README.chromium Created 11 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
Index: third_party/libjingle/files/talk/base/logging.h
diff --git a/third_party/libjingle/files/talk/base/logging.h b/third_party/libjingle/files/talk/base/logging.h
index a4686b70c5cfea150067a1654acc3fea34b76957..36d9d0c5ed79cd7b7dae8b8b6a1a9c9bb0c8d623 100644
--- a/third_party/libjingle/files/talk/base/logging.h
+++ b/third_party/libjingle/files/talk/base/logging.h
@@ -65,9 +65,12 @@ class StreamInterface;
// << ErrorName(err, LIBRARY_ERRORS);
struct ConstantLabel { int value; const char * label; };
+
+#if defined(SAFE_TO_DEFINE_TALK_BASE_LOGGING_MACROS)
#define KLABEL(x) { x, #x }
#define TLABEL(x,y) { x, y }
#define LASTLABEL { 0, 0 }
+#endif // defined(SAFE_TO_DEFINE_TALK_BASE_LOGGING_MACROS)
const char * FindLabel(int value, const ConstantLabel entries[]);
std::string ErrorName(int err, const ConstantLabel* err_table);
@@ -193,6 +196,7 @@ void LogMultiline(LoggingSeverity level, const char* label, bool input,
//////////////////////////////////////////////////////////////////////
// If LOGGING is not explicitly defined, default to enabled in debug mode
+#if defined(SAFE_TO_DEFINE_TALK_BASE_LOGGING_MACROS)
#if !defined(LOGGING)
#if defined(_DEBUG) && !defined(NDEBUG)
#define LOGGING 1
@@ -288,6 +292,7 @@ inline bool LogCheckLevel(LoggingSeverity sev) {
#endif // !LOGGING
#endif // LOG
+#endif // defined(SAFE_TO_DEFINE_TALK_BASE_LOGGING_MACROS)
//////////////////////////////////////////////////////////////////////

Powered by Google App Engine
This is Rietveld 408576698