1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19

content / renderer / effective_connection_type_helper.h [blame]

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_RENDERER_EFFECTIVE_CONNECTION_TYPE_HELPER_H_
#define CONTENT_RENDERER_EFFECTIVE_CONNECTION_TYPE_HELPER_H_

#include "net/nqe/effective_connection_type.h"
#include "third_party/blink/public/platform/web_effective_connection_type.h"

namespace content {

blink::WebEffectiveConnectionType
EffectiveConnectionTypeToWebEffectiveConnectionType(
    net::EffectiveConnectionType net_type);

}  // namespace content

#endif  // CONTENT_RENDERER_EFFECTIVE_CONNECTION_TYPE_HELPER_H_