Issue #80 - De-unify dom/xul

This commit is contained in:
Moonchild 2020-04-23 17:51:21 +00:00 • committed by Roy Tam
commit 429b235e94
8 changed files with 19 additions and 3 deletions

View file

@ -17,7 +17,7 @@ XPIDL_SOURCES += [
XPIDL_MODULE = 'xultmpl'
UNIFIED_SOURCES += [
SOURCES += [
'nsContentSupportMap.cpp',
'nsContentTestNode.cpp',
'nsInstantiationNode.cpp',

View file

@ -8,6 +8,9 @@
#include "nsXULTemplateQueryProcessorRDF.h"
#include "mozilla/Logging.h"
using namespace mozilla;
extern mozilla::LazyLogModule gXULTemplateLog;
nsInstantiationNode::nsInstantiationNode(nsXULTemplateQueryProcessorRDF* aProcessor,

View file

@ -9,6 +9,8 @@
#include "PLDHashTable.h"
#include "nsXULElement.h"
using mozilla::fallible;
class nsTemplateMap {
protected:
struct Entry : public PLDHashEntryHdr {

View file

@ -35,6 +35,10 @@
#include "nsXULSortService.h"
#include "nsIDocument.h"
#include "mozilla/Logging.h"
using namespace mozilla;
//----------------------------------------------------------------------
#define PARSE_TYPE_INTEGER "Integer"

View file

@ -28,6 +28,8 @@
#include "nsIDocument.h"
#include "nsNetUtil.h"
using mozilla::fallible;
//----------------------------------------------------------------------
//
// nsXULTemplateResultSetStorage

View file

@ -32,6 +32,9 @@
#include "nsTreeContentView.h"
#include "nsIXULStore.h"
#include "mozilla/BinarySearch.h"
#include "mozilla/Logging.h"
using mozilla::LogLevel;
// For security check
#include "nsIDocument.h"