Bug 1340771 part 4 - Mark AutoWeakFrame as MOZ_NONHEAP_CLASS and WeakFrame as MOZ_HEAP_CLASS. r=tn

MozReview-Commit-ID: 8yGBKyx3TDW
This commit is contained in:
Mats Palmgren 2017-03-01 18:03:14 +01:00
Родитель 6ef6efaea3
Коммит 742155bd91
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -3829,7 +3829,7 @@ public:
* @note The usage of this class should be kept to a minimum.
*/
class WeakFrame;
class AutoWeakFrame
class MOZ_NONHEAP_CLASS AutoWeakFrame
{
public:
explicit AutoWeakFrame()
@ -3905,7 +3905,7 @@ private:
/**
* @see AutoWeakFrame
*/
class WeakFrame
class MOZ_HEAP_CLASS WeakFrame
{
public:
WeakFrame() : mFrame(nullptr) {}