2017-11-28 18:00:50 -05:00
|
|
|
// Copyright (c) 2017 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_BROWSER_NET_NET_UTIL_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_NET_NET_UTIL_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace net {
|
|
|
|
class URLRequest;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace net_util {
|
|
|
|
|
|
|
|
// Returns true if |request| is handled internally and should not be exposed via
|
|
|
|
// the CEF API.
|
2018-02-05 19:21:14 -05:00
|
|
|
bool IsInternalRequest(const net::URLRequest* request);
|
2017-11-28 18:00:50 -05:00
|
|
|
|
2019-03-13 21:27:37 +00:00
|
|
|
} // namespace net_util
|
2017-11-28 18:00:50 -05:00
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_NET_NET_UTIL_H_
|