Index: net/quic/crypto/crypto_server_config_protobuf.cc |
diff --git a/net/quic/crypto/crypto_server_config_protobuf.cc b/net/quic/crypto/crypto_server_config_protobuf.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f2a1a2d3eded097736742757ccf3fe94c5a37920 |
--- /dev/null |
+++ b/net/quic/crypto/crypto_server_config_protobuf.cc |
@@ -0,0 +1,18 @@ |
+// Copyright (c) 2013 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 "net/quic/crypto/crypto_server_config_protobuf.h" |
+ |
+#include "base/stl_util.h" |
+ |
+namespace net { |
+ |
+QuicServerConfigProtobuf::QuicServerConfigProtobuf() { |
+} |
+ |
+QuicServerConfigProtobuf::~QuicServerConfigProtobuf() { |
+ STLDeleteElements(&keys_); |
+} |
+ |
+} // namespace net |