Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
loic-sharma committed Feb 15, 2024
1 parent 32ead1f commit 6ba408b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions shell/platform/windows/flutter_window.cc
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,7 @@ FlutterWindow::FlutterWindow(

// Base constructor for mocks
FlutterWindow::FlutterWindow()
: touch_id_generator_(kMinTouchDeviceId, kMaxTouchDeviceId) {
}
: touch_id_generator_(kMinTouchDeviceId, kMaxTouchDeviceId) {}

FlutterWindow::~FlutterWindow() {
Destroy();
Expand Down
3 changes: 1 addition & 2 deletions shell/platform/windows/flutter_window_unittests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,7 @@ TEST_F(FlutterWindowTest, AccessibilityNodeWithoutView) {
TEST_F(FlutterWindowTest, AlertNode) {
std::unique_ptr<FlutterWindowsEngine> engine =
FlutterWindowsEngineBuilder{GetContext()}.Build();
auto win32window =
std::make_unique<MockFlutterWindow>();
auto win32window = std::make_unique<MockFlutterWindow>();
EXPECT_CALL(*win32window.get(), GetAxFragmentRootDelegate())
.WillRepeatedly(Return(nullptr));
EXPECT_CALL(*win32window.get(), OnWindowStateEvent).Times(AnyNumber());
Expand Down

0 comments on commit 6ba408b

Please sign in to comment.