Bug 1163907 - Remove #ifdef PR_LOGGING in AccessibleCaretLogger

This commit is contained in:
Ting-Yu Lin 2015-05-11 23:05:00 +08:00
parent 8d63fd55fe
commit 81bce7fafe
2 changed files with 0 additions and 17 deletions

View File

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

View File

@ -10,7 +10,6 @@
#include "prlog.h"
namespace mozilla {
#ifdef PR_LOGGING
PRLogModuleInfo* GetAccessibleCaretLog();
@ -23,18 +22,6 @@ PRLogModuleInfo* GetAccessibleCaretLog();
PR_LOG(GetAccessibleCaretLog(), PR_LOG_DEBUG + 1, (__VA_ARGS__));
#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
#endif // AccessibleCaretLog_h