blob: dfc6d10e3fa1c7e120a02769c273607fb2a9a78e [file] [log] [blame]
[email protected]d7ff5fb2014-05-29 19:50:251// 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
tfarinabccc34c72015-02-27 21:32:155#ifndef CONTENT_RENDERER_NET_INFO_HELPER_H_
6#define CONTENT_RENDERER_NET_INFO_HELPER_H_
[email protected]d7ff5fb2014-05-29 19:50:257
8#include "net/base/network_change_notifier.h"
Blink Reformata30d4232018-04-07 15:31:069#include "third_party/blink/public/platform/web_connection_type.h"
[email protected]d7ff5fb2014-05-29 19:50:2510
11namespace content {
12
13blink::WebConnectionType NetConnectionTypeToWebConnectionType(
14 net::NetworkChangeNotifier::ConnectionType type);
15
16} // namespace content
17
tfarinabccc34c72015-02-27 21:32:1518#endif // CONTENT_RENDERER_NET_INFO_HELPER_H_