mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e5c33da3e3
--HG-- rename : dom/system/unix/Makefile.in => dom/system/qt/Makefile.in rename : dom/system/unix/QTMLocationProvider.cpp => dom/system/qt/QTMLocationProvider.cpp rename : dom/system/unix/QTMLocationProvider.h => dom/system/qt/QTMLocationProvider.h rename : dom/system/unix/nsHapticFeedback.cpp => dom/system/qt/QtHapticFeedback.cpp rename : dom/system/unix/nsHapticFeedback.h => dom/system/qt/QtHapticFeedback.h rename : dom/system/unix/moz.build => dom/system/qt/moz.build
14 lines
428 B
C++
14 lines
428 B
C++
/* -*- Mode: c++; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsIHapticFeedback.h"
|
|
|
|
class QtHapticFeedback : public nsIHapticFeedback
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIHAPTICFEEDBACK
|
|
};
|