Bug 984271 part.3 Move OverOutElementsWrapper into mozilla:: namespace r=smaug

This commit is contained in:
Masayuki Nakano 2014-04-01 13:09:24 +09:00
parent a63f35fff1
commit 0e807881d8
2 changed files with 6 additions and 7 deletions

View File

@ -222,9 +222,11 @@ GetDocumentFromWindow(nsIDOMWindow *aWindow)
}
/******************************************************************/
/* OverOutElementsWrapper */
/* mozilla::OverOutElementsWrapper */
/******************************************************************/
namespace mozilla {
OverOutElementsWrapper::OverOutElementsWrapper()
: mLastOverFrame(nullptr)
{
@ -249,8 +251,6 @@ NS_INTERFACE_MAP_END
/* mozilla::EventStateManager */
/******************************************************************/
namespace mozilla {
static uint32_t sESMInstanceCount = 0;
int32_t EventStateManager::sUserInputEventDepth = 0;

View File

@ -31,14 +31,15 @@ class nsITimer;
class nsPresContext;
namespace mozilla {
class EnterLeaveDispatcher;
class ScrollbarsForWheel;
class WheelTransaction;
namespace dom {
class DataTransfer;
class TabParent;
}
}
} // namespace dom
class OverOutElementsWrapper MOZ_FINAL : public nsISupports
{
@ -62,8 +63,6 @@ public:
nsCOMPtr<nsIContent> mFirstOutEventElement;
};
namespace mozilla {
class EventStateManager : public nsSupportsWeakReference,
public nsIObserver
{