Hi Mike,
Yes, you are correct, the origin trial will most likely override that.
Sorry for the back and forth.
You can disable origin trials for WebView explicitly in aw_main_delegate.cc. Take a look at
this CL, where they set the embedder_support::kOriginTrialDisabledFeatures command line flag and add the name of the origin trial to disable.
In their case they wanted to be able to test, which is why they have guarded the append by the check to see if it's already there, but in your case, it probably makes sense to make it an unconditional append, as long as you do it after their check.
Let me know if that works for you.