mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-03-05 12:18:20 +01:00
17 lines
467 B
C
17 lines
467 B
C
|
// Copyright (c) 2019 The Chromium Embedded Framework 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 CEF_LIBCEF_COMMON_NET_SERVICE_UTIL_H_
|
||
|
#define CEF_LIBCEF_COMMON_NET_SERVICE_UTIL_H_
|
||
|
#pragma once
|
||
|
|
||
|
namespace net_service {
|
||
|
|
||
|
// Returns true if the NetworkService is enabled.
|
||
|
bool IsEnabled();
|
||
|
|
||
|
} // namespace net_service
|
||
|
|
||
|
#endif // CEF_LIBCEF_COMMON_NET_SERVICE_UTIL_H_
|