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

Side by Side Diff: chrome/browser/extensions/api/mdns/dns_sd_delegate.h

Issue 2876703002: [mDns] Move dns_sd_registry from extension/api/mdns to media/router/discovery/mdns (Closed)
Patch Set: rebase with master Created 3 years, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_MDNS_DNS_SD_DELEGATE_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_MDNS_DNS_SD_DELEGATE_H_
7
8 #include <string>
9 #include <vector>
10
11 namespace extensions {
12
13 struct DnsSdService {
14 std::string service_name;
15 std::string service_host_port;
16 std::string ip_address;
17 std::vector<std::string> service_data;
18
19 DnsSdService();
20 DnsSdService(const DnsSdService& other);
21 virtual ~DnsSdService();
22
23 bool operator==(const DnsSdService& other) const {
24 return service_name == other.service_name &&
25 service_host_port == other.service_host_port &&
26 ip_address == other.ip_address &&
27 service_data == other.service_data;
28 }
29
30 bool operator!=(const DnsSdService& other) const {
31 return !(*this == other);
32 }
33 };
34
35 // Delegate that is notified when a watched service is added, updated or
36 // removed.
37 class DnsSdDelegate {
38 public:
39 virtual void ServiceChanged(const std::string& service_type,
40 bool added,
41 const DnsSdService& service) = 0;
42 virtual void ServiceRemoved(const std::string& service_type,
43 const std::string& service_name) = 0;
44 virtual void ServicesFlushed(const std::string& service_type) = 0;
45 };
46
47 } // namespace extensions
48
49 #endif // CHROME_BROWSER_EXTENSIONS_API_MDNS_DNS_SD_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/BUILD.gn ('k') | chrome/browser/extensions/api/mdns/dns_sd_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698