Bug 1460624: Switch FIFO buffer to use stl::deque instead of stl::list. r=mattwoodrow

MozReview-Commit-ID: 3oeH9WyRKBp
This commit is contained in:
Bas Schouten 2018-05-12 22:21:38 +02:00
Родитель 7521c770a6
Коммит bbc1a8c2c3
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -55,7 +55,7 @@
#include <algorithm>
#include <functional>
#include <list>
#include <deque>
using namespace mozilla::layers;
using namespace mozilla::gfx;
@ -207,7 +207,7 @@ private:
}
}
std::list<DisplayItemEntry> mMarkers;
std::deque<DisplayItemEntry> mMarkers;
AutoTArray<nsDisplayItem*, 4> mActiveMarkers;
ContainerState* mState;
};