Bug 1191178 - Part 0.1: GetSriLog() is needed to avoid unified build failure. r=francois

This commit is contained in:
Hiroyuki Ikezoe 2015-08-20 14:19:53 -07:00
Родитель a670cdc9df
Коммит cc83f75f66
1 изменённых файлов: 10 добавлений и 0 удалений

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

@ -31,6 +31,16 @@
#include "nsStyleUtil.h"
#include "nsQueryObject.h"
static PRLogModuleInfo*
GetSriLog()
{
static PRLogModuleInfo *gSriPRLog;
if (!gSriPRLog) {
gSriPRLog = PR_NewLogModule("SRI");
}
return gSriPRLog;
}
using namespace mozilla;
using namespace mozilla::dom;