stuartmorgan 8ec8af75a2
[windows] Add horizontal scroll support (#20668)
The embedding was only handling vertical scroll events from the OS; this
adds horizontal as well.

Fixes https://github.com/flutter/flutter/issues/60835
2020-08-31 16:01:38 -07:00

22 lines
560 B
C++

#include "flutter/shell/platform/windows/testing/mock_win32_window.h"
namespace flutter {
namespace testing {
MockWin32Window::MockWin32Window() : Win32Window(){};
MockWin32Window::~MockWin32Window() = default;
UINT MockWin32Window::GetDpi() {
return GetCurrentDPI();
}
void MockWin32Window::InjectWindowMessage(UINT const message,
WPARAM const wparam,
LPARAM const lparam) {
HandleMessage(message, wparam, lparam);
}
} // namespace testing
} // namespace flutter