Bug 1068268 - Remove redundant MOZ_COUNT_[CD]TOR macros in AsyncPanZoomController. r=botond

This commit is contained in:
Kartikaya Gupta 2014-09-20 22:27:17 -04:00
parent ee087e7822
commit 709ee53472

View File

@ -55,7 +55,6 @@
#include "nsCOMPtr.h" // for already_AddRefed
#include "nsDebug.h" // for NS_WARNING
#include "nsIDOMWindowUtils.h" // for nsIDOMWindowUtils
#include "nsISupportsImpl.h" // for MOZ_COUNT_CTOR, etc
#include "nsMathUtils.h" // for NS_hypot
#include "nsPoint.h" // for nsIntPoint
#include "nsStyleConsts.h"
@ -886,15 +885,12 @@ AsyncPanZoomController::AsyncPanZoomController(uint64_t aLayersId,
mSharedLock(nullptr),
mAsyncTransformAppliedToContent(false)
{
MOZ_COUNT_CTOR(AsyncPanZoomController);
if (aGestures == USE_GESTURE_DETECTOR) {
mGestureEventListener = new GestureEventListener(this);
}
}
AsyncPanZoomController::~AsyncPanZoomController() {
MOZ_COUNT_DTOR(AsyncPanZoomController);
}
PCompositorParent*