blob: 5914363456142297ed8edd7fb2c5349f23145520 [file] [log] [blame]
// Copyright 2019 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.
#ifndef CHROME_BROWSER_LOOKALIKES_SAFETY_TIPS_SAFETY_TIP_TEST_UTILS_H_
#define CHROME_BROWSER_LOOKALIKES_SAFETY_TIPS_SAFETY_TIP_TEST_UTILS_H_
#include <string>
#include "chrome/browser/lookalikes/safety_tips/safety_tips.pb.h"
// Sets the patterns included in component with the given flag type for tests.
void SetSafetyTipPatternsWithFlagType(
std::vector<std::string> pattern,
chrome_browser_safety_tips::FlaggedPage::FlagType type);
// Sets the patterns to trigger a bad-reputation Safety Tip for tests. This just
// calls SetSafetyTipPatternsWithFlagType with BAD_REPUTATION as the type.
void SetSafetyTipBadRepPatterns(std::vector<std::string> pattern);
#endif // CHROME_BROWSER_LOOKALIKES_SAFETY_TIPS_SAFETY_TIP_TEST_UTILS_H_