| Index: components/webrtc_log_uploader/webrtc_log_uploader_export.h
|
| diff --git a/components/webrtc_log_uploader/webrtc_log_uploader_export.h b/components/webrtc_log_uploader/webrtc_log_uploader_export.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..922db8bfc74bb1c24a0dec7bf19b8957d7fd356a
|
| --- /dev/null
|
| +++ b/components/webrtc_log_uploader/webrtc_log_uploader_export.h
|
| @@ -0,0 +1,29 @@
|
| +// Copyright 2013 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 COMPONENTS_WEBRTC_LOG_UPLOADER_WEBRTC_LOG_UPLOADER_EXPORT_H_
|
| +#define COMPONENTS_WEBRTC_LOG_UPLOADER_WEBRTC_LOG_UPLOADER_EXPORT_H_
|
| +
|
| +#if defined(COMPONENT_BUILD)
|
| +#if defined(WIN32)
|
| +
|
| +#if defined(WEBRTC_LOG_UPLOADER_IMPLEMENTATION)
|
| +#define WEBRTC_LOG_UPLOADER_EXPORT __declspec(dllexport)
|
| +#else
|
| +#define WEBRTC_LOG_UPLOADER_EXPORT __declspec(dllimport)
|
| +#endif // defined(WEBRTC_LOG_UPLOADER_IMPLEMENTATION)
|
| +
|
| +#else // defined(WIN32)
|
| +#if defined(WEBRTC_LOG_UPLOADER_IMPLEMENTATION)
|
| +#define WEBRTC_LOG_UPLOADER_EXPORT __attribute__((visibility("default")))
|
| +#else
|
| +#define WEBRTC_LOG_UPLOADER_EXPORT
|
| +#endif
|
| +#endif
|
| +
|
| +#else // defined(COMPONENT_BUILD)
|
| +#define WEBRTC_LOG_UPLOADER_EXPORT
|
| +#endif
|
| +
|
| +#endif // COMPONENTS_WEBRTC_LOG_UPLOADER_WEBRTC_LOG_UPLOADER_EXPORT_H_
|
|
|