blob: 5aeef0b00adc78fc727d28c2fe64eb4bad1f324d [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/prefetch/prefetch_field_trial.h"
#include <string>
#include "base/metrics/field_trial.h"
#include "base/strings/string_util.h"
namespace prefetch {
bool IsPrefetchEnabled() {
std::string experiment = base::FieldTrialList::FindFullName("Prefetch");
if (StartsWithASCII(experiment, "ExperimentYes", false))
return true;
return false;
}
} // namespace prefetch