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

Unified Diff: components/devtools_bridge/abstract_data_channel.h

Issue 716433003: Continue impementation SessionDependencyFactoryNative. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@native-factory
Patch Set: Created 6 years, 1 month 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 | « components/devtools_bridge/DEPS ('k') | components/devtools_bridge/abstract_peer_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/devtools_bridge/abstract_data_channel.h
diff --git a/components/devtools_bridge/abstract_data_channel.h b/components/devtools_bridge/abstract_data_channel.h
new file mode 100644
index 0000000000000000000000000000000000000000..a297810f17c706b04b4ab8d8ec411585869ca0c2
--- /dev/null
+++ b/components/devtools_bridge/abstract_data_channel.h
@@ -0,0 +1,31 @@
+// 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 COMPONENTS_DEVTOOLS_BRIDGE_ABSTRACT_DATA_CHANNEL_H_
+#define COMPONENTS_DEVTOOLS_BRIDGE_ABSTRACT_DATA_CHANNEL_H_
+
+#include <string>
+
+#include "base/callback.h"
+#include "base/memory/scoped_ptr.h"
+
+namespace devtools_bridge {
+
+/**
+ * WebRTC DataChannel adapter for DevTools bridge.
+ */
+class AbstractDataChannel {
+ public:
+ AbstractDataChannel() {}
+ virtual ~AbstractDataChannel() {}
+
+ // TODO(serya): Implement
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(AbstractDataChannel);
+};
+
+} // namespace devtools_bridge
+
+#endif // COMPONENTS_DEVTOOLS_BRIDGE_ABSTRACT_DATA_CHANNEL_H_
« no previous file with comments | « components/devtools_bridge/DEPS ('k') | components/devtools_bridge/abstract_peer_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698