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

Unified Diff: webkit/glue/p2p_transport.cc

Issue 7713021: Add SetProperty() in the PPB_Transport_Dev interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 years, 4 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: webkit/glue/p2p_transport.cc
diff --git a/webkit/glue/p2p_transport.cc b/webkit/glue/p2p_transport.cc
new file mode 100644
index 0000000000000000000000000000000000000000..be6aea563d02c8b35981c611a940cfc698fd74a9
--- /dev/null
+++ b/webkit/glue/p2p_transport.cc
@@ -0,0 +1,16 @@
+// Copyright (c) 2011 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.
+
+#include "webkit/glue/p2p_transport.h"
+
+namespace webkit_glue {
+
+P2PTransport::Config::Config()
+ : tcp_receive_window(0),
+ tcp_send_window(0) {
+}
+
+P2PTransport::Config::~Config() { }
brettw 2011/08/25 16:48:43 Style guide says no space in {} (in this case I'd
Sergey Ulanov 2011/08/25 17:36:53 Done. Personally I prefer to have space here, and
brettw 2011/08/26 20:24:06 http://www.corp.google.com/eng/doc/cppguide.xml?sh
Sergey Ulanov 2011/08/26 20:34:36 Thanks!
+
+} // namespace webkit_glue

Powered by Google App Engine
This is Rietveld 408576698