Chromium Code Reviews| 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_SHARED_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_SHARED_CLIENT_H_ |
| 6 #define CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_SHARED_CLIENT_H_ | 6 #define CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_SHARED_CLIENT_H_ |
| 7 | 7 |
| 8 #include "chrome/common/local_discovery/service_discovery_client.h" | 8 #include "chrome/common/local_discovery/service_discovery_client.h" |
| 9 | 9 |
| 10 namespace local_discovery { | 10 namespace local_discovery { |
| 11 | 11 |
| 12 class ServiceDiscoverySharedClient | 12 class ServiceDiscoverySharedClient |
| 13 : public base::RefCounted<ServiceDiscoverySharedClient>, | 13 : public base::RefCounted<ServiceDiscoverySharedClient>, |
| 14 public ServiceDiscoveryClient { | 14 public ServiceDiscoveryClient { |
| 15 public: | 15 public: |
| 16 static scoped_refptr<ServiceDiscoverySharedClient> GetInstance(); | 16 static scoped_refptr<ServiceDiscoverySharedClient> GetInstance(); |
|
Noam Samuel
2014/08/27 17:58:56
Maybe add a comment here that this is deprecated a
Vitaly Buka (NO REVIEWS)
2014/08/27 18:08:27
Actually this is still primary call.
GetInstanceWi
| |
| 17 | 17 |
| 18 typedef base::Callback<void(scoped_refptr<ServiceDiscoverySharedClient>)> | |
| 19 GetInstanceCallback; | |
| 20 static void GetInstanceWithoutAlert(const GetInstanceCallback& callback); | |
| 21 | |
| 18 protected: | 22 protected: |
| 19 ServiceDiscoverySharedClient(); | 23 ServiceDiscoverySharedClient(); |
| 20 virtual ~ServiceDiscoverySharedClient(); | 24 virtual ~ServiceDiscoverySharedClient(); |
| 21 | 25 |
| 22 private: | 26 private: |
| 23 friend class base::RefCounted<ServiceDiscoverySharedClient>; | 27 friend class base::RefCounted<ServiceDiscoverySharedClient>; |
| 24 | 28 |
| 25 DISALLOW_COPY_AND_ASSIGN(ServiceDiscoverySharedClient); | 29 DISALLOW_COPY_AND_ASSIGN(ServiceDiscoverySharedClient); |
| 26 }; | 30 }; |
| 27 | 31 |
| 28 } // namespace local_discovery | 32 } // namespace local_discovery |
| 29 | 33 |
| 30 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_SHARED_CLIENT_H_ | 34 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_SHARED_CLIENT_H_ |
| OLD | NEW |