diff options
Diffstat (limited to 'WebKit/qt/examples/platformplugin/WebPlugin.cpp')
-rw-r--r-- | WebKit/qt/examples/platformplugin/WebPlugin.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/WebKit/qt/examples/platformplugin/WebPlugin.cpp b/WebKit/qt/examples/platformplugin/WebPlugin.cpp index 23b938e..d029b73 100644 --- a/WebKit/qt/examples/platformplugin/WebPlugin.cpp +++ b/WebKit/qt/examples/platformplugin/WebPlugin.cpp @@ -217,6 +217,8 @@ bool WebPlugin::supportsExtension(Extension extension) const case Notifications: return true; #endif + case TouchInteraction: + return true; default: return false; } @@ -231,6 +233,8 @@ QObject* WebPlugin::createExtension(Extension extension) const case Notifications: return new WebNotificationPresenter(); #endif + case TouchInteraction: + return new TouchModifier(); default: return 0; } |