Index: remoting/host/cast_extension.h |
diff --git a/remoting/host/cast_extension.h b/remoting/host/cast_extension.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..20e5f8299f2bff982a449a5345522dd18ef28783 |
--- /dev/null |
+++ b/remoting/host/cast_extension.h |
@@ -0,0 +1,49 @@ |
+// 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 REMOTING_HOST_CAST_EXTENSION_H_ |
+#define REMOTING_HOST_CAST_EXTENSION_H_ |
+ |
+#include <string> |
+ |
+#include "base/memory/scoped_ptr.h" |
+#include "net/url_request/url_request_context_getter.h" |
+#include "remoting/host/host_extension.h" |
+ |
+namespace base { |
+class SingleThreadTaskRunner; |
+} // namespace base |
+ |
+namespace remoting { |
+ |
+namespace protocol { |
+struct NetworkSettings; |
+} // namespace protocol |
+ |
+// A class that extends HostExtension to enable WebRTC support. |
+class CastExtension : public HostExtension { |
+ public: |
+ CastExtension( |
+ scoped_refptr<base::SingleThreadTaskRunner> network_task_runner, |
+ scoped_refptr<base::SingleThreadTaskRunner> video_capture_task_runner, |
+ scoped_refptr<net::URLRequestContextGetter> url_request_context_getter, |
+ const protocol::NetworkSettings& network_settings); |
+ virtual ~CastExtension(); |
+ |
+ virtual std::string GetCapabilities() OVERRIDE; |
+ virtual scoped_ptr<HostExtensionSession> CreateExtensionSession( |
+ ClientSession* client_session) OVERRIDE; |
+ |
+ private: |
+ // Parameters passed to CastExtensionSession on creation. |
+ scoped_refptr<base::SingleThreadTaskRunner> network_task_runner_; |
+ scoped_refptr<base::SingleThreadTaskRunner> video_capture_task_runner_; |
+ scoped_refptr<net::URLRequestContextGetter> url_request_context_getter_; |
+ const protocol::NetworkSettings& network_settings_; |
+}; |
+ |
+} // namespace remoting |
+ |
+#endif // REMOTING_HOST_CAST_EXTENSION_H_ |
+ |