blob: 0f09b111e871fe95abb1b03f14a94f09566c0cff [file] [log] [blame]
Daniel Rubery1287e20e2021-02-23 20:11:131// Copyright 2021 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#ifndef CHROME_BROWSER_SAFE_BROWSING_USER_POPULATION_H_
6#define CHROME_BROWSER_SAFE_BROWSING_USER_POPULATION_H_
7
8#include "chrome/browser/profiles/profile.h"
Colin Blundell8bee0392021-06-29 08:34:329#include "components/safe_browsing/core/common/proto/csd.pb.h"
Daniel Rubery1287e20e2021-02-23 20:11:1310
11namespace safe_browsing {
12
13// Creates a ChromeUserPopulation proto for the given |profile|.
14ChromeUserPopulation GetUserPopulation(Profile* profile);
15
16} // namespace safe_browsing
17
18#endif // CHROME_BROWSER_SAFE_BROWSING_USER_POPULATION_H_