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

Unified Diff: net/quic/crypto/channel_id_chromium.h

Issue 346323002: net: Implement ChannelIDSourceChromium, which is based on Chromium's (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Rebase Created 6 years, 6 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
« no previous file with comments | « net/net.gypi ('k') | net/quic/crypto/channel_id_chromium.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/channel_id_chromium.h
===================================================================
--- net/quic/crypto/channel_id_chromium.h (revision 0)
+++ net/quic/crypto/channel_id_chromium.h (revision 0)
@@ -0,0 +1,64 @@
+// 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 NET_QUIC_CRYPTO_CHANNEL_ID_CHROMIUM_H_
+#define NET_QUIC_CRYPTO_CHANNEL_ID_CHROMIUM_H_
+
+#include <set>
+
+#include "net/quic/crypto/channel_id.h"
+
+namespace crypto {
+class ECPrivateKey;
+} // namespace crypto
+
+namespace net {
+
+class ServerBoundCertService;
+
+class NET_EXPORT_PRIVATE ChannelIDKeyChromium: public ChannelIDKey {
+ public:
+ explicit ChannelIDKeyChromium(crypto::ECPrivateKey* ec_private_key);
+ virtual ~ChannelIDKeyChromium();
+
+ // ChannelIDKey interface
+ virtual bool Sign(base::StringPiece signed_data,
+ std::string* out_signature) const OVERRIDE;
+ virtual std::string SerializeKey() const OVERRIDE;
+
+ private:
+ scoped_ptr<crypto::ECPrivateKey> ec_private_key_;
+};
+
+// ChannelIDSourceChromium implements the QUIC ChannelIDSource interface.
+class ChannelIDSourceChromium : public ChannelIDSource {
+ public:
+ explicit ChannelIDSourceChromium(
+ ServerBoundCertService* server_bound_cert_service);
+ virtual ~ChannelIDSourceChromium();
+
+ // ChannelIDSource interface
+ virtual QuicAsyncStatus GetChannelIDKey(
+ const std::string& hostname,
+ scoped_ptr<ChannelIDKey>* channel_id_key,
+ ChannelIDSourceCallback* callback) OVERRIDE;
+
+ private:
+ class Job;
+ typedef std::set<Job*> JobSet;
+
+ void OnJobComplete(Job* job);
+
+ // Set owning pointers to active jobs.
+ JobSet active_jobs_;
+
+ // The service for retrieving Channel ID keys.
+ ServerBoundCertService* const server_bound_cert_service_;
+
+ DISALLOW_COPY_AND_ASSIGN(ChannelIDSourceChromium);
+};
+
+} // namespace net
+
+#endif // NET_QUIC_CRYPTO_CHANNEL_ID_CHROMIUM_H_
Property changes on: net/quic/crypto/channel_id_chromium.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « net/net.gypi ('k') | net/quic/crypto/channel_id_chromium.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698