Bug 1525199 - Part 2 - removed size_t from GfxVarUpdate IPC messages; r=jrmuizel

These are indexes into an array of prefs so we're nowhere near needing to worry
about >32-bit values.

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Alex Gaynor 2019-02-08 21:52:42 +00:00
Родитель a4cf44b3f8
Коммит 0abca7a289
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -98,7 +98,7 @@ union GfxVarValue
struct GfxVarUpdate
{
size_t index;
uint32_t index;
GfxVarValue value;
};