Fix wrong initialization order in FAdviser (2)

Similar to I9a6ab9bf744c2158fdf14a03c70fe95cf9ad61bc

FAdviser declares thread_ before queue_. This can cause a race leading
to crash when we start the thread_ (in the initializer list) and the
new thread tries to use queue_ before it is initialized.

Now, we declare queue_ before thread_ ensuring that queue_ will always
be initialized before thread_ runs.

Bug: 154416156
Test: m
Change-Id: I44770d3ed1a0a38e404e9bd493509105d0f84db0
1 file changed