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
Родитель f6885469a0
Коммит df31146979
2 изменённых файлов: 6 добавлений и 7 удалений

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

@ -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;

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

@ -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
{