mirror of
https://github.com/encounter/engine.git
synced 2026-07-10 03:18:43 -07:00
21 lines
536 B
C++
21 lines
536 B
C++
#include "flutter/shell/platform/windows/testing/win32_flutter_window_test.h"
|
|
#include <iostream>
|
|
|
|
namespace flutter {
|
|
namespace testing {
|
|
|
|
Win32FlutterWindowTest::Win32FlutterWindowTest(int width, int height)
|
|
: Win32FlutterWindow(width, height){};
|
|
|
|
Win32FlutterWindowTest::~Win32FlutterWindowTest() = default;
|
|
|
|
void Win32FlutterWindowTest::OnFontChange() {
|
|
on_font_change_called_ = true;
|
|
}
|
|
|
|
bool Win32FlutterWindowTest::OnFontChangeWasCalled() {
|
|
return on_font_change_called_;
|
|
}
|
|
} // namespace testing
|
|
} // namespace flutter
|