Update mojo surfaces bindings and mojo/cc/ glue
[chromium-blink-merge.git] / chrome / browser / local_discovery / service_discovery_shared_client.h
blob700e620281b173eb4ac3f26e7652d1a170ecd0b1
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.
5 #ifndef CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_SHARED_CLIENT_H_
6 #define CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_SHARED_CLIENT_H_
8 #include "chrome/common/local_discovery/service_discovery_client.h"
10 namespace local_discovery {
12 class ServiceDiscoverySharedClient
13 : public base::RefCounted<ServiceDiscoverySharedClient>,
14 public ServiceDiscoveryClient {
15 public:
16 static scoped_refptr<ServiceDiscoverySharedClient> GetInstance();
18 protected:
19 ServiceDiscoverySharedClient();
20 virtual ~ServiceDiscoverySharedClient();
22 private:
23 friend class base::RefCounted<ServiceDiscoverySharedClient>;
25 DISALLOW_COPY_AND_ASSIGN(ServiceDiscoverySharedClient);
28 } // namespace local_discovery
30 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_SERVICE_DISCOVERY_SHARED_CLIENT_H_