Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ allowed_hosts = [
]

deps = {
'src': 'https://github.com/flutter/buildroot.git' + '@' + 'f83d1d75216e97fb696434bca1cb9a4e7a570fb6',
'src': 'https://github.com/stuartmorgan/buildroot.git' + '@' + '636b23c76c3f18c14341077c1b61bb90395f85b4',

# Fuchsia compatibility
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ bool TestWindowProcCallback2(HWND hwnd,
LPARAM lparam,
void* user_data,
LRESULT* result) {
// This line exists so that this function is not just a straight passthrough,
// since in some cases the compiler was optimizing it away and causing the two
// registrations in RegisterMultiple to actually have the same function
// address.
EXPECT_NE(reinterpret_cast<unsigned long>(TestWindowProcCallback),
reinterpret_cast<unsigned long>(TestWindowProcCallback2));
return TestWindowProcCallback(hwnd, message, wparam, lparam, user_data,
result);
}
Expand Down