diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-20 19:03:35 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-20 19:03:35 +0200 |
commit | f7ee7bf961b3c7488338a468b54f8934f9c16b28 (patch) | |
tree | 6450a225ad44ced398f7a5bce0cc1da537b2b613 | |
parent | 244539413ebbd8372cc78f130f7e33563d97148a (diff) | |
download | uxp-f7ee7bf961b3c7488338a468b54f8934f9c16b28.tar.gz |
Issue #80 - De-unify dom/geolocation
-rw-r--r-- | dom/geolocation/moz.build | 2 | ||||
-rw-r--r-- | dom/geolocation/nsGeoPosition.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/dom/geolocation/moz.build b/dom/geolocation/moz.build index 4339d5a7f3..8ac79e8b3c 100644 --- a/dom/geolocation/moz.build +++ b/dom/geolocation/moz.build @@ -13,7 +13,7 @@ SOURCES += [ 'nsGeolocation.cpp', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'MLSFallback.cpp', 'nsGeoPosition.cpp', ] diff --git a/dom/geolocation/nsGeoPosition.h b/dom/geolocation/nsGeoPosition.h index 06b406c32d..cefb4ae8d7 100644 --- a/dom/geolocation/nsGeoPosition.h +++ b/dom/geolocation/nsGeoPosition.h @@ -7,6 +7,7 @@ #ifndef nsGeoPosition_h #define nsGeoPosition_h +#include "nsCOMPtr.h" #include "nsIDOMGeoPositionCoords.h" #include "nsIDOMGeoPosition.h" #include "nsString.h" |