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

Unified Diff: net/http/http_pipelined_connection.h

Issue 9959033: Move NextProto enum to a new file net/socket/next_proto.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Unwrap short lines. Created 8 years, 9 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/http/http_pipelined_connection.h
diff --git a/net/http/http_pipelined_connection.h b/net/http/http_pipelined_connection.h
index 020acc687e0e7d9169c51685c507135ba2f0a2e1..67b1e83e598f7b0ce6f15ceed64bb6ebcd396404 100644
--- a/net/http/http_pipelined_connection.h
+++ b/net/http/http_pipelined_connection.h
@@ -54,7 +54,7 @@ class NET_EXPORT_PRIVATE HttpPipelinedConnection {
const ProxyInfo& used_proxy_info,
const BoundNetLog& net_log,
bool was_npn_negotiated,
- SSLClientSocket::NextProto protocol_negotiated) = 0;
+ NextProto protocol_negotiated) = 0;
};
virtual ~HttpPipelinedConnection() {}
@@ -86,7 +86,7 @@ class NET_EXPORT_PRIVATE HttpPipelinedConnection {
virtual bool was_npn_negotiated() const = 0;
// Protocol negotiated with the server.
- virtual SSLClientSocket::NextProto protocol_negotiated() const = 0;
+ virtual NextProto protocol_negotiated() const = 0;
};
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698