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

Unified Diff: chrome/browser/local_discovery/privet_http_asynchronous_factory_mac.h

Issue 195983023: Enable devices page UI on MacOSX (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix_dcheck
Patch Set: Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/local_discovery/privet_http_asynchronous_factory_mac.h
diff --git a/chrome/browser/local_discovery/privet_http_asynchronous_factory_mac.h b/chrome/browser/local_discovery/privet_http_asynchronous_factory_mac.h
new file mode 100644
index 0000000000000000000000000000000000000000..cd25d680b56ce32daad49b210183b748ef245c9e
--- /dev/null
+++ b/chrome/browser/local_discovery/privet_http_asynchronous_factory_mac.h
@@ -0,0 +1,48 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_ASYNCHRONOUS_FACTORY_MAC_H_
+#define CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_ASYNCHRONOUS_FACTORY_MAC_H_
+
+#include "chrome/browser/local_discovery/privet_http.h"
+#include "chrome/browser/local_discovery/privet_http_asynchronous_factory.h"
+
+namespace local_discovery {
+
+class PrivetHTTPAsynchronousFactoryMac : public PrivetHTTPAsynchronousFactory {
+ public:
+ explicit PrivetHTTPAsynchronousFactoryMac(
+ net::URLRequestContextGetter* request_context);
+ virtual ~PrivetHTTPAsynchronousFactoryMac();
+
+ virtual scoped_ptr<PrivetHTTPResolution> CreatePrivetHTTP(
+ const std::string& name,
+ const net::HostPortPair& address,
+ const ResultCallback& callback) OVERRIDE;
+
+ private:
+ class ResolutionMac : public PrivetHTTPResolution {
+ public:
+ ResolutionMac(net::URLRequestContextGetter* request_context,
+ const std::string& name,
+ const net::HostPortPair& host_port,
+ const ResultCallback& callback);
+ virtual ~ResolutionMac();
+
+ virtual void Start() OVERRIDE;
+ virtual const std::string& GetName() OVERRIDE;
+
+ private:
+ net::URLRequestContextGetter* request_context_;
+ std::string name_;
+ net::HostPortPair host_port_;
+ ResultCallback callback_;
+ };
+
+ net::URLRequestContextGetter* request_context_;
+};
+
+} // namespace local_discovery
+
+#endif // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_ASYNCHRONOUS_FACTORY_MAC_H_

Powered by Google App Engine
This is Rietveld 408576698