diff options
author | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-13 17:09:43 +0000 |
---|---|---|
committer | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-13 17:09:43 +0000 |
commit | ab352339b60c24999706fdb081a943e81e984aa2 (patch) | |
tree | ee9b06ecc3ccedd92e3abffbd6aaa0fc3cdf25fd /net/tools | |
parent | 9f547bfd7465f0bcb29ab1d0225dddf81e7ebed8 (diff) | |
download | chromium_src-ab352339b60c24999706fdb081a943e81e984aa2.zip chromium_src-ab352339b60c24999706fdb081a943e81e984aa2.tar.gz chromium_src-ab352339b60c24999706fdb081a943e81e984aa2.tar.bz2 |
flip_in_mem_edsm_server: Fix friend declaration.
The friend function declaration ParseHTTPFirstLine must not be
qualified, since it is introducing a new name, rather than
referring to an already declared function.
BUG=none
TEST=flip_in_mem_edsm_server still builds
Review URL: http://codereview.chromium.org/5675007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69009 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/tools')
-rw-r--r-- | net/tools/flip_server/balsa_headers.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/tools/flip_server/balsa_headers.h b/net/tools/flip_server/balsa_headers.h index ab8a31a..b51b7f4 100644 --- a/net/tools/flip_server/balsa_headers.h +++ b/net/tools/flip_server/balsa_headers.h @@ -392,12 +392,12 @@ class BalsaHeaders { }; typedef std::vector<base::StringPiece> HeaderTokenList; - friend bool net::ParseHTTPFirstLine(const char* begin, - const char* end, - bool is_request, - size_t max_request_uri_length, - BalsaHeaders* headers, - BalsaFrameEnums::ErrorCode* error_code); + friend bool ParseHTTPFirstLine(const char* begin, + const char* end, + bool is_request, + size_t max_request_uri_length, + BalsaHeaders* headers, + BalsaFrameEnums::ErrorCode* error_code); protected: typedef std::vector<HeaderLineDescription> HeaderLines; |