blob: e643e932434ab6868aae27711e23f6abe3fe90fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright 2020 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 COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_UTILS_H_
#define COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_UTILS_H_
#include "build/build_config.h"
namespace security_interstitials {
// Provides utilities for security interstitials on //content-based platforms.
#if !defined(OS_CHROMEOS) && !defined(OS_FUCHSIA)
// Launches date and time settings as appropriate based on the platform (not
// supported on ChromeOS, where taking this action requires embedder-level
// machinery, or Fuchsia, which simply doesn't require this functionality).
void LaunchDateAndTimeSettings();
#endif
} // namespace security_interstitials
#endif // COMPONENTS_SECURITY_INTERSTITIALS_CONTENT_UTILS_H_
|