// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // This file contains some useful utilities for the safe_browsing/triggers // classes #include "components/safe_browsing/content/browser/triggers/trigger_util.h" #include <string> #include "base/strings/string_util.h" #include "content/public/browser/render_frame_host.h" namespace safe_browsing { bool DetectGoogleAd(content::RenderFrameHost* render_frame_host, const GURL& frame_url) { … } } // namespace safe_browsing