Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_BASE_NET_API_H_ | 5 #ifndef NET_BASE_NET_API_H_ |
| 6 #define NET_BASE_NET_API_H_ | 6 #define NET_BASE_NET_API_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 // Defines NET_API so that funtionality implemented by the net module can be | 9 // Defines NET_API so that funtionality implemented by the net module can be |
| 10 // exported to consumers, and NET_TEST that allows unit tests to access features | 10 // exported to consumers, and NET_TEST that allows unit tests to access features |
| 11 // not intended to be used directly by real consumers. | 11 // not intended to be used directly by real consumers. |
| 12 | 12 |
| 13 #if defined(WIN32) && defined(NET_DLL) | 13 #if defined(NET_DLL) |
| 14 #if defined(WIN32) | |
| 14 #if defined(NET_IMPLEMENTATION) | 15 #if defined(NET_IMPLEMENTATION) |
| 15 #define NET_API __declspec(dllexport) | 16 #define NET_API __declspec(dllexport) |
| 16 #define NET_TEST __declspec(dllexport) | 17 #define NET_TEST __declspec(dllexport) |
| 17 #else | 18 #else |
| 18 #define NET_API __declspec(dllimport) | 19 #define NET_API __declspec(dllimport) |
| 19 #define NET_TEST __declspec(dllimport) | 20 #define NET_TEST __declspec(dllimport) |
| 20 #endif // defined(NET_IMPLEMENTATION) | 21 #endif // defined(NET_IMPLEMENTATION) |
| 21 #else | 22 #else |
| 23 #define NET_API __attribute__((visibility("default"))) | |
| 24 #define NET_TEST __attribute__((visibility("default"))) | |
|
wtc
2011/06/24 16:38:51
I guess there is a corresponding GYP file change t
| |
| 25 #endif // defined(WIN32) | |
| 26 #else | |
| 22 #define NET_API | 27 #define NET_API |
| 23 #define NET_TEST | 28 #define NET_TEST |
| 24 #endif | 29 #endif |
|
wtc
2011/06/24 16:36:26
I suggest adding some blank lines to make the stru
| |
| 25 | 30 |
| 26 #endif // NET_BASE_NET_API_H_ | 31 #endif // NET_BASE_NET_API_H_ |
| OLD | NEW |