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

Unified Diff: net/quic/reliable_quic_stream.cc

Issue 763833003: Remove using namespace in net/quic/quic_stream_sequencer.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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/reliable_quic_stream.cc
diff --git a/net/quic/reliable_quic_stream.cc b/net/quic/reliable_quic_stream.cc
index 70b6d9af0305132fd85a2ca8c425f321558dc8be..9fe82fde0e5dcabdbe60d6587eeff4414ad336e3 100644
--- a/net/quic/reliable_quic_stream.cc
+++ b/net/quic/reliable_quic_stream.cc
@@ -128,7 +128,7 @@ class ReliableQuicStream::ProxyAckNotifierDelegate
};
ReliableQuicStream::PendingData::PendingData(
- string data_in, scoped_refptr<ProxyAckNotifierDelegate> delegate_in)
+ std::string data_in, scoped_refptr<ProxyAckNotifierDelegate> delegate_in)
: data(data_in), delegate(delegate_in) {
}
@@ -248,8 +248,8 @@ void ReliableQuicStream::CloseConnection(QuicErrorCode error) {
session()->connection()->SendConnectionClose(error);
}
-void ReliableQuicStream::CloseConnectionWithDetails(QuicErrorCode error,
- const string& details) {
+void ReliableQuicStream::CloseConnectionWithDetails(
+ QuicErrorCode error, const std::string& details) {
session()->connection()->SendConnectionCloseWithDetails(error, details);
}

Powered by Google App Engine
This is Rietveld 408576698