Bug 1289211 - Rename InfallibleTArray to nsTArray in hal/ r=gsvelto

Differential Revision: https://phabricator.services.mozilla.com/D36959

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Barret Rennie 2019-07-10 03:30:52 +00:00
Родитель cb1609a60d
Коммит 119f8b6281
5 изменённых файлов: 8 добавлений и 9 удалений

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

@ -19,7 +19,7 @@ WindowIdentifier::WindowIdentifier(nsPIDOMWindowInner* window)
mID.AppendElement(GetWindowID());
}
WindowIdentifier::WindowIdentifier(const InfallibleTArray<uint64_t>& id,
WindowIdentifier::WindowIdentifier(const nsTArray<uint64_t>& id,
nsPIDOMWindowInner* window)
: mID(id), mWindow(window), mIsEmpty(false) {
mID.AppendElement(GetWindowID());
@ -28,7 +28,7 @@ WindowIdentifier::WindowIdentifier(const InfallibleTArray<uint64_t>& id,
WindowIdentifier::WindowIdentifier(const WindowIdentifier& other)
: mID(other.mID), mWindow(other.mWindow), mIsEmpty(other.mIsEmpty) {}
const InfallibleTArray<uint64_t>& WindowIdentifier::AsArray() const {
const nsTArray<uint64_t>& WindowIdentifier::AsArray() const {
MOZ_ASSERT(!mIsEmpty);
return mID;
}

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

@ -66,13 +66,12 @@ class WindowIdentifier {
* This automatically grabs the window's ID and appends it to the
* array.
*/
WindowIdentifier(const InfallibleTArray<uint64_t>& id,
nsPIDOMWindowInner* window);
WindowIdentifier(const nsTArray<uint64_t>& id, nsPIDOMWindowInner* window);
/**
* Get the list of window and process IDs we contain.
*/
typedef InfallibleTArray<uint64_t> IDArrayType;
typedef nsTArray<uint64_t> IDArrayType;
const IDArrayType& AsArray() const;
/**

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

@ -41,7 +41,7 @@ void UpdateHandler(nsITimer* aTimer, void* aClosure) {
continue;
}
SensorType sensor = static_cast<SensorType>(i);
InfallibleTArray<float> values;
nsTArray<float> values;
if (sensor == SENSOR_ACCELERATION) {
sms_acceleration accel;
smsGetData(&accel);

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

@ -164,7 +164,7 @@ class HalParent : public PHalParent,
}
virtual mozilla::ipc::IPCResult RecvVibrate(
InfallibleTArray<unsigned int>&& pattern, InfallibleTArray<uint64_t>&& id,
nsTArray<unsigned int>&& pattern, nsTArray<uint64_t>&& id,
PBrowserParent* browserParent) override {
// We give all content vibration permission.
// BrowserParent *browserParent = BrowserParent::GetFrom(browserParent);
@ -178,7 +178,7 @@ class HalParent : public PHalParent,
}
virtual mozilla::ipc::IPCResult RecvCancelVibrate(
InfallibleTArray<uint64_t>&& id, PBrowserParent* browserParent) override {
nsTArray<uint64_t>&& id, PBrowserParent* browserParent) override {
// BrowserParent *browserParent = BrowserParent::GetFrom(browserParent);
/* XXXkhuey wtf
nsCOMPtr<nsIDOMWindow> window =

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

@ -63,7 +63,7 @@ class SensorEvent final : public ISensorEvents {
STDMETHODIMP OnDataUpdated(ISensor* aSensor, ISensorDataReport* aReport) {
PROPVARIANT v;
HRESULT hr;
InfallibleTArray<float> values;
nsTArray<float> values;
// X-axis acceleration in g's
hr = aReport->GetSensorValue(SENSOR_DATA_TYPE_ACCELERATION_X_G, &v);