summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-13 01:02:25 +0000
committerericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-13 01:02:25 +0000
commit030e1d68852367abd17bd8948565ca1b924c9109 (patch)
tree62b74ab195e051d7b74a7196aa082f6ed06f47ec
parent6c9851a40d3f6280dc322c2392d9cfcf8fba1b2d (diff)
downloadchromium_src-030e1d68852367abd17bd8948565ca1b924c9109.zip
chromium_src-030e1d68852367abd17bd8948565ca1b924c9109.tar.gz
chromium_src-030e1d68852367abd17bd8948565ca1b924c9109.tar.bz2
TBR fix for broken compile on mac.
i had committed some bad code which visual studio doesnt mind, but gcc notices. Review URL: http://codereview.chromium.org/2818 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2155 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--net/http/http_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/http_util.h b/net/http/http_util.h
index 77ae117..70488c3 100644
--- a/net/http/http_util.h
+++ b/net/http/http_util.h
@@ -58,7 +58,7 @@ class HttpUtil {
// Returns the start of the status line, or -1 if no status line was found.
// This allows for 4 bytes of junk to precede the status line (which is what
// mozilla does too).
- static int HttpUtil::LocateStartOfStatusLine(const char* buf, int buf_len);
+ static int LocateStartOfStatusLine(const char* buf, int buf_len);
// Returns index beyond the end-of-headers marker or -1 if not found. RFC
// 2616 defines the end-of-headers marker as a double CRLF; however, some