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

Side by Side Diff: Source/platform/network/HTTPParsers.cpp

Issue 400543004: Rename WebCore namespace to blink in Platform (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/platform/network/HTTPParsers.h ('k') | Source/platform/network/HTTPParsersTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) 2 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org)
3 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 3 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
4 * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ 4 * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
5 * Copyright (C) 2009 Google Inc. All rights reserved. 5 * Copyright (C) 2009 Google Inc. All rights reserved.
6 * Copyright (C) 2011 Apple Inc. All Rights Reserved. 6 * Copyright (C) 2011 Apple Inc. All Rights Reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions 9 * modification, are permitted provided that the following conditions
10 * are met: 10 * are met:
(...skipping 24 matching lines...) Expand all
35 35
36 #include "wtf/DateMath.h" 36 #include "wtf/DateMath.h"
37 #include "wtf/MathExtras.h" 37 #include "wtf/MathExtras.h"
38 #include "wtf/text/CString.h" 38 #include "wtf/text/CString.h"
39 #include "wtf/text/StringBuilder.h" 39 #include "wtf/text/StringBuilder.h"
40 #include "wtf/text/WTFString.h" 40 #include "wtf/text/WTFString.h"
41 #include "wtf/unicode/CharacterNames.h" 41 #include "wtf/unicode/CharacterNames.h"
42 42
43 using namespace WTF; 43 using namespace WTF;
44 44
45 namespace WebCore { 45 namespace blink {
46 46
47 // true if there is more to parse, after incrementing pos past whitespace. 47 // true if there is more to parse, after incrementing pos past whitespace.
48 // Note: Might return pos == str.length() 48 // Note: Might return pos == str.length()
49 static inline bool skipWhiteSpace(const String& str, unsigned& pos, bool fromHtt pEquivMeta) 49 static inline bool skipWhiteSpace(const String& str, unsigned& pos, bool fromHtt pEquivMeta)
50 { 50 {
51 unsigned len = str.length(); 51 unsigned len = str.length();
52 52
53 if (fromHttpEquivMeta) { 53 if (fromHttpEquivMeta) {
54 while (pos < len && str[pos] <= ' ') 54 while (pos < len && str[pos] <= ' ')
55 ++pos; 55 ++pos;
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 if (!cacheControlHeader.containsNoCache) { 845 if (!cacheControlHeader.containsNoCache) {
846 // Handle Pragma: no-cache 846 // Handle Pragma: no-cache
847 // This is deprecated and equivalent to Cache-control: no-cache 847 // This is deprecated and equivalent to Cache-control: no-cache
848 // Don't bother tokenizing the value, it is not important 848 // Don't bother tokenizing the value, it is not important
849 cacheControlHeader.containsNoCache = pragmaValue.lower().contains(noCach eDirective); 849 cacheControlHeader.containsNoCache = pragmaValue.lower().contains(noCach eDirective);
850 } 850 }
851 return cacheControlHeader; 851 return cacheControlHeader;
852 } 852 }
853 853
854 } 854 }
OLDNEW
« no previous file with comments | « Source/platform/network/HTTPParsers.h ('k') | Source/platform/network/HTTPParsersTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698