OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_CLIENT_MAC_H_ | 5 #ifndef CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_CLIENT_MAC_H_ |
6 #define CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_CLIENT_MAC_H_ | 6 #define CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_CLIENT_MAC_H_ |
7 | 7 |
| 8 #import <Foundation/Foundation.h> |
8 #include <string> | 9 #include <string> |
9 | 10 |
10 #include "base/mac/scoped_nsobject.h" | 11 #include "base/mac/scoped_nsobject.h" |
11 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
12 #include "chrome/browser/local_discovery/service_discovery_shared_client.h" | 13 #include "chrome/browser/local_discovery/service_discovery_shared_client.h" |
13 #include "content/public/browser/browser_thread.h" | 14 #include "content/public/browser/browser_thread.h" |
14 | 15 |
15 namespace base { | 16 namespace base { |
16 class Thread; | 17 class Thread; |
17 } | 18 } |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 scoped_ptr<NetServiceContainer, | 183 scoped_ptr<NetServiceContainer, |
183 ServiceDiscoveryThreadDeleter<NetServiceContainer> > container_; | 184 ServiceDiscoveryThreadDeleter<NetServiceContainer> > container_; |
184 base::WeakPtrFactory<ServiceResolverImplMac> weak_factory_; | 185 base::WeakPtrFactory<ServiceResolverImplMac> weak_factory_; |
185 | 186 |
186 DISALLOW_COPY_AND_ASSIGN(ServiceResolverImplMac); | 187 DISALLOW_COPY_AND_ASSIGN(ServiceResolverImplMac); |
187 }; | 188 }; |
188 | 189 |
189 } // namespace local_discovery | 190 } // namespace local_discovery |
190 | 191 |
191 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_CLIENT_MAC_H_ | 192 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_CLIENT_MAC_H_ |
OLD | NEW |