Bug 1348873 - Change ServoType to uint64_t instead of uint16_t in EventStates r=emilio

MozReview-Commit-ID: GDP6XaL96ez

--HG--
extra : rebase_source : 6aa38ac64b3706961709b27d31903dc24405ee57
This commit is contained in:
Nazım Can Altınova 2017-03-20 18:54:54 +03:00
Родитель 08eaa88de2
Коммит 70ea60c038
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -25,7 +25,7 @@ class EventStates
{
public:
typedef uint64_t InternalType;
typedef uint16_t ServoType;
typedef uint64_t ServoType;
constexpr EventStates()
: mStates(0)

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

@ -144,7 +144,7 @@ void Gecko_DropStyleChildrenIterator(StyleChildrenIteratorOwned it);
RawGeckoNodeBorrowedOrNull Gecko_GetNextStyleChild(StyleChildrenIteratorBorrowedMut it);
// Selector Matching.
uint16_t Gecko_ElementState(RawGeckoElementBorrowed element);
uint64_t Gecko_ElementState(RawGeckoElementBorrowed element);
bool Gecko_IsLink(RawGeckoElementBorrowed element);
bool Gecko_IsTextNode(RawGeckoNodeBorrowed node);
bool Gecko_IsVisitedLink(RawGeckoElementBorrowed element);