mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 00:06:09 +03:00
22 lines
472 B
C++
22 lines
472 B
C++
// 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 NET_NQE_PREF_NAMES_H_
|
|
#define NET_NQE_PREF_NAMES_H_
|
|
|
|
#include "net/base/net_export.h"
|
|
|
|
namespace net {
|
|
|
|
namespace nqe {
|
|
|
|
// Prefs for persisting network qualities.
|
|
NET_EXPORT_PRIVATE extern const char kNetworkQualities[];
|
|
|
|
} // namespace nqe
|
|
|
|
} // namespace net
|
|
|
|
#endif // NET_NQE_PREF_NAMES_H_
|