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

Side by Side Diff: third_party/WebKit/Source/platform/text/QuotedPrintable.cpp

Issue 2458003002: Remove ASSERT_WITH_SECURITY_IMPLICATION. (Closed)
Patch Set: Minor formatting fix Created 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 23 matching lines...) Expand all
34 34
35 namespace blink { 35 namespace blink {
36 36
37 static const size_t maximumLineLength = 76; 37 static const size_t maximumLineLength = 76;
38 38
39 static const char crlfLineEnding[] = "\r\n"; 39 static const char crlfLineEnding[] = "\r\n";
40 40
41 static size_t lengthOfLineEndingAtIndex(const char* input, 41 static size_t lengthOfLineEndingAtIndex(const char* input,
42 size_t inputLength, 42 size_t inputLength,
43 size_t index) { 43 size_t index) {
44 ASSERT_WITH_SECURITY_IMPLICATION(index < inputLength); 44 SECURITY_DCHECK(index < inputLength);
45 if (input[index] == '\n') 45 if (input[index] == '\n')
46 return 1; // Single LF. 46 return 1; // Single LF.
47 47
48 if (input[index] == '\r') { 48 if (input[index] == '\r') {
49 if ((index + 1) == inputLength || input[index + 1] != '\n') 49 if ((index + 1) == inputLength || input[index + 1] != '\n')
50 return 1; // Single CR (Classic Mac OS). 50 return 1; // Single CR (Classic Mac OS).
51 return 2; // CR-LF. 51 return 2; // CR-LF.
52 } 52 }
53 53
54 return 0; 54 return 0;
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 out.append(upperCharacter); 156 out.append(upperCharacter);
157 out.append(lowerCharacter); 157 out.append(lowerCharacter);
158 continue; 158 continue;
159 } 159 }
160 out.append( 160 out.append(
161 static_cast<char>(toASCIIHexValue(upperCharacter, lowerCharacter))); 161 static_cast<char>(toASCIIHexValue(upperCharacter, lowerCharacter)));
162 } 162 }
163 } 163 }
164 164
165 } // namespace blink 165 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698