| Auto-Submit | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
#if !BUILDFLAG(IS_MAC)Why is this !mac? Also, does this work on Linux?
std::vector<uint32_t> components =
base::Version(kUpdaterVersion).components();
const base::CheckedNumeric<uint32_t> new_version = components[0] + 1;
ASSERT_TRUE(new_version.AssignIfValid(&components[0]));What is tested here?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |