blob: fba54a69b53afbf6302ebd45cb0be4fa8c115247 [file] [log] [blame]
[email protected]aa61db02013-04-23 00:23:491// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/browser/chrome_browser_field_trials_mobile.h"
6
avie4d7b6f2015-12-26 00:59:187#include "build/build_config.h"
Matthew Cary4f09c142019-03-06 11:15:568#include "chrome/browser/browser_process.h"
[email protected]aa61db02013-04-23 00:23:499
[email protected]f6b64062014-02-06 18:49:1110#if defined(OS_ANDROID)
11#include "chrome/browser/prerender/prerender_field_trial.h"
12#endif
13
[email protected]aa61db02013-04-23 00:23:4914namespace chrome {
15
drogerbbb48562016-12-07 13:35:3116void SetupMobileFieldTrials() {
Matthew Cary4f09c142019-03-06 11:15:5617 DCHECK(!g_browser_process);
[email protected]f6b64062014-02-06 18:49:1118#if defined(OS_ANDROID)
Egor Pasko6fed3822018-05-30 10:33:1419 prerender::ConfigureNoStatePrefetch();
[email protected]f6b64062014-02-06 18:49:1120#endif
[email protected]aa61db02013-04-23 00:23:4921}
22
23} // namespace chrome