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

Side by Side Diff: Source/wtf/text/WTFString.h

Issue 1088843002: Add #include <algorithm> to code that is missing it. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: And no more comments Created 5 years, 8 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
« no previous file with comments | « Source/wtf/Vector.h ('k') | no next file » | 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 * (C) 1999 Lars Knoll (knoll@kde.org) 2 * (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 12 matching lines...) Expand all
23 #define WTFString_h 23 #define WTFString_h
24 24
25 // This file would be called String.h, but that conflicts with <string.h> 25 // This file would be called String.h, but that conflicts with <string.h>
26 // on systems without case-sensitive file systems. 26 // on systems without case-sensitive file systems.
27 27
28 #include "wtf/HashTableDeletedValueType.h" 28 #include "wtf/HashTableDeletedValueType.h"
29 #include "wtf/WTFExport.h" 29 #include "wtf/WTFExport.h"
30 #include "wtf/text/ASCIIFastPath.h" 30 #include "wtf/text/ASCIIFastPath.h"
31 #include "wtf/text/StringImpl.h" 31 #include "wtf/text/StringImpl.h"
32 #include "wtf/text/StringView.h" 32 #include "wtf/text/StringView.h"
33 #include <algorithm>
33 34
34 #ifdef __OBJC__ 35 #ifdef __OBJC__
35 #include <objc/objc.h> 36 #include <objc/objc.h>
36 #endif 37 #endif
37 38
38 namespace WTF { 39 namespace WTF {
39 40
40 class CString; 41 class CString;
41 struct StringHash; 42 struct StringHash;
42 43
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 using WTF::charactersToFloat; 677 using WTF::charactersToFloat;
677 using WTF::equal; 678 using WTF::equal;
678 using WTF::equalIgnoringCase; 679 using WTF::equalIgnoringCase;
679 using WTF::find; 680 using WTF::find;
680 using WTF::isAllSpecialCharacters; 681 using WTF::isAllSpecialCharacters;
681 using WTF::isSpaceOrNewline; 682 using WTF::isSpaceOrNewline;
682 using WTF::reverseFind; 683 using WTF::reverseFind;
683 684
684 #include "wtf/text/AtomicString.h" 685 #include "wtf/text/AtomicString.h"
685 #endif // WTFString_h 686 #endif // WTFString_h
OLDNEW
« no previous file with comments | « Source/wtf/Vector.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698