summaryrefslogtreecommitdiffstats
path: root/tests/auto/unit/mockbackend/qmockintegration.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/unit/mockbackend/qmockintegration.cpp')
-rw-r--r--tests/auto/unit/mockbackend/qmockintegration.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/auto/unit/mockbackend/qmockintegration.cpp b/tests/auto/unit/mockbackend/qmockintegration.cpp
index 5468b10b6..698ecfed9 100644
--- a/tests/auto/unit/mockbackend/qmockintegration.cpp
+++ b/tests/auto/unit/mockbackend/qmockintegration.cpp
@@ -38,7 +38,7 @@
****************************************************************************/
#include "qmockintegration_p.h"
-#include "qmockdevicemanager_p.h"
+#include "qmockmediadevices_p.h"
#include "qmockmediaplayer.h"
#include "qmockaudiodecoder.h"
#include "qmockcamera.h"
@@ -56,14 +56,14 @@ QMockIntegration::QMockIntegration()
QMockIntegration::~QMockIntegration()
{
setIntegration(nullptr);
- delete m_manager;
+ delete m_devices;
}
-QPlatformMediaDeviceManager *QMockIntegration::deviceManager()
+QPlatformMediaDevices *QMockIntegration::devices()
{
- if (!m_manager)
- m_manager = new QMockDeviceManager();
- return m_manager;
+ if (!m_devices)
+ m_devices = new QMockMediaDevices();
+ return m_devices;
}
QPlatformAudioDecoder *QMockIntegration::createAudioDecoder()