mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 04:41:11 +00:00
f3db7eea3f
And add a minimal amount of pieces required to build. Differential Revision: https://phabricator.services.mozilla.com/D224430
16 lines
551 B
Plaintext
16 lines
551 B
Plaintext
/* -*- Mode: c++; c-basic-offset: 2; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
* vim: set sw=2 ts=4 expandtab:
|
|
* 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 "EventDispatcher.h"
|
|
|
|
namespace mozilla::widget {
|
|
|
|
NS_IMPL_ISUPPORTS(EventDispatcher, nsIGeckoViewEventDispatcher)
|
|
|
|
bool EventDispatcher::HasListener(const char16_t* aEvent) { return false; }
|
|
|
|
} // namespace mozilla::widget
|