blob: 3bb60e9d94240a6aeee6dbe2e90a3ad6f932b7be [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|.
Colin Blundell3c7096852021-09-02 17:28:1614ChromeUserPopulation GetUserPopulationForProfile(Profile* profile);
Daniel Rubery1287e20e2021-02-23 20:11:1315
16} // namespace safe_browsing
17
18#endif // CHROME_BROWSER_SAFE_BROWSING_USER_POPULATION_H_