Bug 709490 - Part 12 - explicit CTORs for a couple of runnables, CLOSED TREE

This commit is contained in:
Andrea Marchesini 2015-09-29 12:54:54 +01:00
parent 61a591b6d7
commit e46e68854a

View File

@ -46,7 +46,7 @@ AsyncCanvasRenderer::NotifyElementAboutAttributesChanged()
class Runnable final : public nsRunnable
{
public:
Runnable(AsyncCanvasRenderer* aRenderer)
explicit Runnable(AsyncCanvasRenderer* aRenderer)
: mRenderer(aRenderer)
{}
@ -81,7 +81,7 @@ AsyncCanvasRenderer::NotifyElementAboutInvalidation()
class Runnable final : public nsRunnable
{
public:
Runnable(AsyncCanvasRenderer* aRenderer)
explicit Runnable(AsyncCanvasRenderer* aRenderer)
: mRenderer(aRenderer)
{}