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

Side by Side Diff: chrome/browser/local_discovery/service_discovery_shared_client.h

Issue 504223005: Check Firewall state only initializing mDns from PrintPreview. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tue Aug 26 18:22:17 PDT 2014 Created 6 years, 3 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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698