summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorvitalybuka@chromium.org <vitalybuka@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-20 20:17:09 +0000
committervitalybuka@chromium.org <vitalybuka@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-20 20:17:09 +0000
commit2ef49b370b61080c96ffcfb57a5ed4bebb89cd2a (patch)
tree9b214f52430318e01ac58729a3cc4b1124d75855 /net
parent505ccdc35620bf7f789a9e68673a9c9a5d5ea423 (diff)
downloadchromium_src-2ef49b370b61080c96ffcfb57a5ed4bebb89cd2a.zip
chromium_src-2ef49b370b61080c96ffcfb57a5ed4bebb89cd2a.tar.gz
chromium_src-2ef49b370b61080c96ffcfb57a5ed4bebb89cd2a.tar.bz2
Added NET_EXPORT into mDns code.
Review URL: https://chromiumcodereview.appspot.com/17451010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207533 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/dns/mdns_client.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/dns/mdns_client.h b/net/dns/mdns_client.h
index 4e4255d..f1f5adb 100644
--- a/net/dns/mdns_client.h
+++ b/net/dns/mdns_client.h
@@ -23,7 +23,7 @@ class RecordParsed;
// by querying the network (it may choose to query either or both based on its
// creation flags, see MDnsTransactionFlags). Network-based transactions will
// time out after a reasonable number of seconds.
-class MDnsTransaction {
+class NET_EXPORT MDnsTransaction {
public:
// Used to signify what type of result the transaction has recieved.
enum Result {
@@ -79,7 +79,7 @@ class MDnsTransaction {
// A listener listens for updates regarding a specific record or set of records.
// Created by the MDnsClient (see |MDnsClient::CreateListener|) and used to keep
// track of listeners.
-class MDnsListener {
+class NET_EXPORT MDnsListener {
public:
// Used in the MDnsListener delegate to signify what type of change has been
// made to a record.
@@ -124,7 +124,7 @@ class MDnsListener {
// of new records, or by creating an |MDnsTransaction| to look up the value of a
// specific records. When all listeners and active transactions are destroyed,
// the client stops listening on the network and destroys the cache.
-class MDnsClient {
+class NET_EXPORT MDnsClient {
public:
virtual ~MDnsClient() {}