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

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

Issue 1149083013: Combine ChannelIDService::RequestHandle and ChannelIDServiceRequest classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix order of variables Created 5 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
Index: net/quic/crypto/channel_id_chromium.cc
diff --git a/net/quic/crypto/channel_id_chromium.cc b/net/quic/crypto/channel_id_chromium.cc
index 9a54e88a6864d2a0ad10abed4ca7e40313e3e12b..ab50efa8e1f79ff9f897e2842fac3e319b89fabe 100644
--- a/net/quic/crypto/channel_id_chromium.cc
+++ b/net/quic/crypto/channel_id_chromium.cc
@@ -89,7 +89,7 @@ class ChannelIDSourceChromium::Job {
ChannelIDService* const channel_id_service_;
scoped_ptr<crypto::ECPrivateKey> channel_id_crypto_key_;
- ChannelIDService::RequestHandle channel_id_request_handle_;
+ ChannelIDService::Request channel_id_request_;
// |hostname| specifies the hostname for which we need a channel ID.
std::string hostname_;
@@ -181,7 +181,7 @@ int ChannelIDSourceChromium::Job::DoGetChannelIDKey(int result) {
hostname_, &channel_id_crypto_key_,
base::Bind(&ChannelIDSourceChromium::Job::OnIOComplete,
base::Unretained(this)),
- &channel_id_request_handle_);
+ &channel_id_request_);
}
int ChannelIDSourceChromium::Job::DoGetChannelIDKeyComplete(int result) {

Powered by Google App Engine
This is Rietveld 408576698