mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
Issue #80 - De-unify dom/smil
This commit is contained in:
parent
b6d9a013c8
commit
e734022ff3
7 changed files with 10 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ EXPORTS.mozilla.dom += [
|
|||
'TimeEvent.h',
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'nsSMILAnimationController.cpp',
|
||||
'nsSMILAnimationFunction.cpp',
|
||||
'nsSMILCompositor.cpp',
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@
|
|||
#include <math.h>
|
||||
#include <algorithm>
|
||||
|
||||
using namespace mozilla;
|
||||
using namespace mozilla::dom;
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
#include "nsIDOMElement.h"
|
||||
#include "nsIDocument.h"
|
||||
|
||||
using namespace mozilla;
|
||||
using namespace mozilla::dom;
|
||||
|
||||
// Helper function
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
#include "nsDebug.h"
|
||||
#include "nsStyleUtil.h"
|
||||
#include "nsIDocument.h"
|
||||
#include "nsComputedDOMStyle.h"
|
||||
|
||||
using namespace mozilla::dom;
|
||||
using mozilla::StyleAnimationValue;
|
||||
|
|
|
|||
|
|
@ -9,6 +9,9 @@
|
|||
#include "nsCSSProps.h"
|
||||
#include "nsHashKeys.h"
|
||||
#include "nsSMILCSSProperty.h"
|
||||
#include "mozilla/CSSEnabledState.h"
|
||||
|
||||
using namespace mozilla;
|
||||
|
||||
// PLDHashEntryHdr methods
|
||||
bool
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
#define NS_SMILINSTANCETIME_H_
|
||||
|
||||
#include "nsSMILTimeValue.h"
|
||||
#include "nsISupports.h"
|
||||
|
||||
class nsSMILInterval;
|
||||
class nsSMILTimeContainer;
|
||||
|
|
|
|||
|
|
@ -11,6 +11,8 @@
|
|||
|
||||
#include "mozilla/AutoRestore.h"
|
||||
|
||||
using namespace mozilla;
|
||||
|
||||
nsSMILTimeContainer::nsSMILTimeContainer()
|
||||
:
|
||||
mParent(nullptr),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue