Index: net/dns/mdns_client_impl.h |
diff --git a/net/dns/mdns_client_impl.h b/net/dns/mdns_client_impl.h |
index 76607880befc42c77a6d1d7a08399eebac34efec..144b8724c571fd72b7f571d0f5acc2788cfae718 100644 |
--- a/net/dns/mdns_client_impl.h |
+++ b/net/dns/mdns_client_impl.h |
@@ -119,7 +119,8 @@ class NET_EXPORT_PRIVATE MDnsClientImpl : public MDnsClient { |
void RemoveListener(MDnsListenerImpl* listener); |
// Query the cache for records of a specific type and name. |
- void QueryCache(uint16 rrtype, const std::string& name, |
+ void QueryCache(uint16 rrtype, |
+ const std::string& name, |
std::vector<const RecordParsed*>* records) const; |
// Parse the response and alert relevant listeners. |
@@ -129,12 +130,12 @@ class NET_EXPORT_PRIVATE MDnsClientImpl : public MDnsClient { |
private: |
typedef std::pair<std::string, uint16> ListenerKey; |
- typedef std::map<ListenerKey, ObserverList<MDnsListenerImpl>* > |
- ListenerMap; |
+ typedef std::map<ListenerKey, ObserverList<MDnsListenerImpl>*> ListenerMap; |
// Alert listeners of an update to the cache. |
void AlertListeners(MDnsCache::UpdateType update_type, |
- const ListenerKey& key, const RecordParsed* record); |
+ const ListenerKey& key, |
+ const RecordParsed* record); |
// Schedule a cache cleanup to a specific time, cancelling other cleanups. |
void ScheduleCleanup(base::Time cleanup); |