mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
Bug 1202497 - follow-up - fix static analysis bustage; r=me
This commit is contained in:
parent
338e221561
commit
8bb05ee37e
@ -22,7 +22,7 @@ class nsEventQueue
|
|||||||
public:
|
public:
|
||||||
typedef mozilla::MutexAutoLock MutexAutoLock;
|
typedef mozilla::MutexAutoLock MutexAutoLock;
|
||||||
|
|
||||||
nsEventQueue(mozilla::Mutex& aLock);
|
explicit nsEventQueue(mozilla::Mutex& aLock);
|
||||||
~nsEventQueue();
|
~nsEventQueue();
|
||||||
|
|
||||||
// This method adds a new event to the pending event queue. The queue holds
|
// This method adds a new event to the pending event queue. The queue holds
|
||||||
|
@ -117,7 +117,7 @@ protected:
|
|||||||
class nsChainedEventQueue
|
class nsChainedEventQueue
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
nsChainedEventQueue(mozilla::Mutex& aLock)
|
explicit nsChainedEventQueue(mozilla::Mutex& aLock)
|
||||||
: mNext(nullptr)
|
: mNext(nullptr)
|
||||||
, mQueue(aLock)
|
, mQueue(aLock)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user