mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
Issue #80 - De-unify dom/xul
This commit is contained in:
parent
2c7e0856ce
commit
429b235e94
8 changed files with 19 additions and 3 deletions
|
|
@ -19,7 +19,7 @@ if CONFIG['MOZ_XUL']:
|
|||
'nsIXULDocument.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'nsXULCommandDispatcher.cpp',
|
||||
'nsXULContentSink.cpp',
|
||||
'nsXULElement.cpp',
|
||||
|
|
@ -36,7 +36,7 @@ XPIDL_SOURCES += [
|
|||
|
||||
XPIDL_MODULE = 'xul'
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'nsXULControllers.cpp',
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@
|
|||
#include "nsReadableUtils.h"
|
||||
#include "nsXULElement.h"
|
||||
#include "mozilla/Logging.h"
|
||||
#include "mozilla/CheckedInt.h"
|
||||
#include "prmem.h"
|
||||
#include "nsCRT.h"
|
||||
|
||||
|
|
@ -57,6 +58,7 @@
|
|||
#include "nsIScriptError.h"
|
||||
#include "nsContentTypeParser.h"
|
||||
|
||||
using namespace mozilla;
|
||||
static mozilla::LazyLogModule gContentSinkLog("nsXULContentSink");;
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ XPIDL_SOURCES += [
|
|||
|
||||
XPIDL_MODULE = 'xultmpl'
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'nsContentSupportMap.cpp',
|
||||
'nsContentTestNode.cpp',
|
||||
'nsInstantiationNode.cpp',
|
||||
|
|
|
|||
|
|
@ -8,6 +8,9 @@
|
|||
#include "nsXULTemplateQueryProcessorRDF.h"
|
||||
|
||||
#include "mozilla/Logging.h"
|
||||
|
||||
using namespace mozilla;
|
||||
|
||||
extern mozilla::LazyLogModule gXULTemplateLog;
|
||||
|
||||
nsInstantiationNode::nsInstantiationNode(nsXULTemplateQueryProcessorRDF* aProcessor,
|
||||
|
|
|
|||
|
|
@ -9,6 +9,8 @@
|
|||
#include "PLDHashTable.h"
|
||||
#include "nsXULElement.h"
|
||||
|
||||
using mozilla::fallible;
|
||||
|
||||
class nsTemplateMap {
|
||||
protected:
|
||||
struct Entry : public PLDHashEntryHdr {
|
||||
|
|
|
|||
|
|
@ -35,6 +35,10 @@
|
|||
#include "nsXULSortService.h"
|
||||
#include "nsIDocument.h"
|
||||
|
||||
#include "mozilla/Logging.h"
|
||||
|
||||
using namespace mozilla;
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
#define PARSE_TYPE_INTEGER "Integer"
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@
|
|||
#include "nsIDocument.h"
|
||||
#include "nsNetUtil.h"
|
||||
|
||||
using mozilla::fallible;
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
//
|
||||
// nsXULTemplateResultSetStorage
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue