blob: 5dea9d0564507a7d6e9bd088e6102860657f3b18 [file] [log] [blame]
[email protected]cce15bb2014-06-17 13:43:511// Copyright 2014 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_SUPERVISED_USER_SUPERVISED_USERS_H_
6#define CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USERS_H_
7
Scott Violet6200d332018-02-23 21:29:238#include "chrome/common/buildflags.h"
brettw9e85ef42016-11-01 21:01:249
[email protected]cce15bb2014-06-17 13:43:5110// Compile-time check to make sure that we don't include supervised user source
treib87bb89cbb2014-12-01 16:01:4711// files when ENABLE_SUPERVISED_USERS is not defined.
brettw9e85ef42016-11-01 21:01:2412#if !BUILDFLAG(ENABLE_SUPERVISED_USERS)
[email protected]cce15bb2014-06-17 13:43:5113#error "Supervised users aren't enabled."
14#endif
15
16#endif // CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USERS_H_