Rename NET_API to NET_EXPORT, and rename NET_TEST to NET_EXPORT_PRIVATE.
Review URL: http://codereview.chromium.org/7529043

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96560 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/net/socket/tcp_client_socket.h b/net/socket/tcp_client_socket.h
index d756645d..dd72721 100644
--- a/net/socket/tcp_client_socket.h
+++ b/net/socket/tcp_client_socket.h
@@ -7,7 +7,7 @@
 #pragma once
 
 #include "build/build_config.h"
-#include "net/base/net_api.h"
+#include "net/base/net_export.h"
 
 #if defined(OS_WIN)
 #include "net/socket/tcp_client_socket_win.h"
@@ -26,7 +26,7 @@
 
 // Enable/disable experimental TCP FastOpen option.
 // Not thread safe.  Must be called during initialization/startup only.
-NET_API void set_tcp_fastopen_enabled(bool value);
+NET_EXPORT void set_tcp_fastopen_enabled(bool value);
 
 // Check if the TCP FastOpen option is enabled.
 bool is_tcp_fastopen_enabled();