1 // Copyright 2015 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.
5 #ifndef CHROME_BROWSER_SAFE_BROWSING_SRT_FIELD_TRIAL_WIN_H_
6 #define CHROME_BROWSER_SAFE_BROWSING_SRT_FIELD_TRIAL_WIN_H_
8 namespace safe_browsing
{
10 // Returns true if this Chrome is in a field trial group which shows the SRT
12 bool IsInSRTPromptFieldTrialGroups();
14 // Returns the correct SRT download URL for the current field trial.
15 const char* GetSRTDownloadURL();
17 // Returns the value of the incoming SRT seed.
18 std::string
GetIncomingSRTSeed();
20 } // namespace safe_browsing
22 #endif // CHROME_BROWSER_SAFE_BROWSING_SRT_FIELD_TRIAL_WIN_H_