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

Unified Diff: remoting/protocol/ice_config_request.h

Issue 1694613002: Add IceConfig and IceConfigRequest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@url_request
Patch Set: Created 4 years, 10 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
« no previous file with comments | « remoting/protocol/ice_config.cc ('k') | remoting/protocol/jingle_info_request.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/ice_config_request.h
diff --git a/remoting/protocol/ice_config_request.h b/remoting/protocol/ice_config_request.h
new file mode 100644
index 0000000000000000000000000000000000000000..2ec4787c9405673064be5748f80cb0db0d2b8a81
--- /dev/null
+++ b/remoting/protocol/ice_config_request.h
@@ -0,0 +1,31 @@
+// Copyright 2016 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 REMOTING_PROTOCOL_ICE_CONFIG_REQUEST_H_
+#define REMOTING_PROTOCOL_ICE_CONFIG_REQUEST_H_
+
+#include "base/callback_forward.h"
+
+namespace remoting {
+namespace protocol {
+
+struct IceConfig;
+
+// Abstract interface used to fetch STUN and TURN configuration.
+class IceConfigRequest {
+ public:
+ // Callback to receive results of the request. |ice_config| is null if the
+ // request has failed.
+ typedef base::Callback<void(const IceConfig& ice_config)> OnIceConfigCallback;
+
+ virtual ~IceConfigRequest() {}
+
+ // Sends the request and calls the |callback| with the results.
+ virtual void Send(const OnIceConfigCallback& callback) = 0;
+};
+
+} // namespace protocol
+} // namespace remoting
+
+#endif // REMOTING_PROTOCOL_ICE_CONFIG_REQUEST_H_
« no previous file with comments | « remoting/protocol/ice_config.cc ('k') | remoting/protocol/jingle_info_request.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698