2019-12-06 23:55:26 +03:00
|
|
|
/* 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 "MediaKeysEventSourceFactory.h"
|
2020-02-12 16:10:50 +03:00
|
|
|
#include "MPRISServiceHandler.h"
|
2019-12-06 23:55:26 +03:00
|
|
|
|
2020-01-18 16:48:34 +03:00
|
|
|
namespace mozilla::widget {
|
2019-12-06 23:55:26 +03:00
|
|
|
|
2020-06-09 05:59:57 +03:00
|
|
|
mozilla::dom::MediaControlKeySource* CreateMediaControlKeySource() {
|
2020-02-12 16:10:50 +03:00
|
|
|
return new MPRISServiceHandler();
|
2019-12-06 23:55:26 +03:00
|
|
|
}
|
|
|
|
|
2020-01-18 16:48:34 +03:00
|
|
|
} // namespace mozilla::widget
|