Bug 1163907 - Remove #ifdef PR_LOGGING in AccessibleCaretLogger

This commit is contained in:
Ting-Yu Lin 2015-05-11 23:05:00 +08:00
Родитель 4d9db7cba1
Коммит a474ed128e
2 изменённых файлов: 0 добавлений и 17 удалений

Просмотреть файл

@ -8,8 +8,6 @@
namespace mozilla { namespace mozilla {
#ifdef PR_LOGGING
PRLogModuleInfo* PRLogModuleInfo*
GetAccessibleCaretLog() GetAccessibleCaretLog()
{ {
@ -22,6 +20,4 @@ GetAccessibleCaretLog()
return log; return log;
} }
#endif // PR_LOGGING
} // namespace mozilla } // namespace mozilla

Просмотреть файл

@ -10,7 +10,6 @@
#include "prlog.h" #include "prlog.h"
namespace mozilla { namespace mozilla {
#ifdef PR_LOGGING
PRLogModuleInfo* GetAccessibleCaretLog(); PRLogModuleInfo* GetAccessibleCaretLog();
@ -23,18 +22,6 @@ PRLogModuleInfo* GetAccessibleCaretLog();
PR_LOG(GetAccessibleCaretLog(), PR_LOG_DEBUG + 1, (__VA_ARGS__)); PR_LOG(GetAccessibleCaretLog(), PR_LOG_DEBUG + 1, (__VA_ARGS__));
#endif #endif
#else
#ifndef AC_LOGV_BASE
#define AC_LOGV_BASE(...)
#endif
#ifndef AC_LOGV_BASE
#define AC_LOGV_BASE(...)
#endif
#endif // PR_LOGGING
} // namespace mozilla } // namespace mozilla
#endif // AccessibleCaretLog_h #endif // AccessibleCaretLog_h