1 // Copyright 2019 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef NET_THIRD_PARTY_QUICHE_OVERRIDES_QUICHE_PLATFORM_IMPL_QUICHE_EXPORT_IMPL_H_
6 #define NET_THIRD_PARTY_QUICHE_OVERRIDES_QUICHE_PLATFORM_IMPL_QUICHE_EXPORT_IMPL_H_
7 
8 #include "base/component_export.h"
9 
10 // These macros are documented in:
11 // net/third_party/quiche/src/quiche/common/platform/api/quiche_export.h
12 
13 #define QUICHE_EXPORT_IMPL COMPONENT_EXPORT(QUICHE)
14 #define QUICHE_EXPORT_PRIVATE_IMPL COMPONENT_EXPORT(QUICHE)
15 #define QUICHE_NO_EXPORT_IMPL
16 
17 #endif  // NET_THIRD_PARTY_QUICHE_OVERRIDES_QUICHE_PLATFORM_IMPL_QUICHE_EXPORT_IMPL_H_
18