Bug 1523969 part 26 - Move method definition inline comments to new line in 'widget/'. r=mstange

Differential Revision: https://phabricator.services.mozilla.com/D21130
This commit is contained in:
Ryan Hunt
2019-02-25 16:13:48 -06:00
parent a304168c91
commit dbea16f87d
27 changed files with 242 additions and 166 deletions

View File

@@ -146,7 +146,8 @@ nsDragService::~nsDragService() {
NS_IMPL_ISUPPORTS_INHERITED(nsDragService, nsBaseDragService, nsIObserver)
mozilla::StaticRefPtr<nsDragService> sDragServiceInstance;
/* static */ already_AddRefed<nsDragService> nsDragService::GetInstance() {
/* static */
already_AddRefed<nsDragService> nsDragService::GetInstance() {
if (gfxPlatform::IsHeadless()) {
return nullptr;
}
@@ -2032,6 +2033,7 @@ gboolean nsDragService::DispatchDropEvent() {
return mCanDrop;
}
/* static */ uint32_t nsDragService::GetCurrentModifiers() {
/* static */
uint32_t nsDragService::GetCurrentModifiers() {
return mozilla::widget::KeymapWrapper::ComputeCurrentKeyModifiers();
}