summaryrefslogtreecommitdiff
path: root/chromium/net/quic/crypto/crypto_server_config_protobuf.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/quic/crypto/crypto_server_config_protobuf.cc')
-rw-r--r--chromium/net/quic/crypto/crypto_server_config_protobuf.cc20
1 files changed, 20 insertions, 0 deletions
diff --git a/chromium/net/quic/crypto/crypto_server_config_protobuf.cc b/chromium/net/quic/crypto/crypto_server_config_protobuf.cc
new file mode 100644
index 00000000000..a3418e4228a
--- /dev/null
+++ b/chromium/net/quic/crypto/crypto_server_config_protobuf.cc
@@ -0,0 +1,20 @@
+// 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"
+#include "net/quic/quic_time.h"
+
+namespace net {
+
+QuicServerConfigProtobuf::QuicServerConfigProtobuf()
+ : primary_time_(QuicWallTime::Zero().ToUNIXSeconds()) {
+}
+
+QuicServerConfigProtobuf::~QuicServerConfigProtobuf() {
+ STLDeleteElements(&keys_);
+}
+
+} // namespace net