diff options
Diffstat (limited to 'chromium/content/browser/field_trial_synchronizer.cc')
-rw-r--r-- | chromium/content/browser/field_trial_synchronizer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/content/browser/field_trial_synchronizer.cc b/chromium/content/browser/field_trial_synchronizer.cc index 1df74e60baf..ab456955998 100644 --- a/chromium/content/browser/field_trial_synchronizer.cc +++ b/chromium/content/browser/field_trial_synchronizer.cc @@ -110,7 +110,7 @@ void FieldTrialSynchronizer::UpdateRendererVariationsHeader( host->GetBrowserContext()->GetVariationsClient(); // |client| might be null in tests. - if (!client || client->IsIncognito()) + if (!client || client->IsOffTheRecord()) return; mojo::AssociatedRemote<mojom::RendererVariationsConfiguration> |