Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Unified Diff: net/base/network_change_notifier.h

Issue 7529043: Rename NET_API to NET_EXPORT, and rename NET_TEST to NET_EXPORT_PRIVATE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/base/network_change_notifier.h
===================================================================
--- net/base/network_change_notifier.h (revision 95949)
+++ net/base/network_change_notifier.h (working copy)
@@ -8,7 +8,7 @@
#include "base/basictypes.h"
#include "base/observer_list_threadsafe.h"
-#include "net/base/net_api.h"
+#include "net/base/net_export.h"
namespace net {
@@ -17,9 +17,9 @@
// NetworkChangeNotifier monitors the system for network changes, and notifies
// registered observers of those events. Observers may register on any thread,
// and will be called back on the thread from which they registered.
-class NET_API NetworkChangeNotifier {
+class NET_EXPORT NetworkChangeNotifier {
public:
- class NET_API IPAddressObserver {
+ class NET_EXPORT IPAddressObserver {
public:
virtual ~IPAddressObserver() {}
@@ -34,7 +34,7 @@
DISALLOW_COPY_AND_ASSIGN(IPAddressObserver);
};
- class NET_API OnlineStateObserver {
+ class NET_EXPORT OnlineStateObserver {
public:
virtual ~OnlineStateObserver() {}

Powered by Google App Engine
This is Rietveld 408576698