Hi Fuchsia friends.
https://crrev.com/c/7455767 is a pretty trivial CL that changes calls of the form:
sql::Statement::BindInt64(N, something that gets the internal value of a base::Time)
to:
sql::Statement::BindTime(N, a base::Time)
(and similar for base::TimeDelta.)
I am bit surprised to see that this is increasing the size of web_engine and chrome_fuchsia so much (the same patch set succeeded on Jan 16
here). My guess is that this very small change bumps something just over some threshold so that code now spills over into a new page or somesuch.
May I safely ignore this?
Interestingly, the uncompressed size is up 20KB while the compressed size is up 32KB. Is that expected from whatever compression we're doing? Seems kinda like expansion to my eyes. :-)
Thanks for the help.