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

Side by Side Diff: Source/core/style/GridCoordinate.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/core/layout/ColumnInfo.h ('k') | Source/platform/Timer.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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef GridCoordinate_h 31 #ifndef GridCoordinate_h
32 #define GridCoordinate_h 32 #define GridCoordinate_h
33 33
34 #include "core/style/GridResolvedPosition.h" 34 #include "core/style/GridResolvedPosition.h"
35 #include "wtf/HashMap.h" 35 #include "wtf/HashMap.h"
36 #include "wtf/PassOwnPtr.h" 36 #include "wtf/PassOwnPtr.h"
37 #include "wtf/text/WTFString.h" 37 #include "wtf/text/WTFString.h"
38 #include <algorithm>
38 39
39 namespace blink { 40 namespace blink {
40 41
41 // Recommended maximum size for both explicit and implicit grids. 42 // Recommended maximum size for both explicit and implicit grids.
42 const size_t kGridMaxTracks = 1000000; 43 const size_t kGridMaxTracks = 1000000;
43 44
44 // A span in a single direction (either rows or columns). Note that |resolvedIni tialPosition| 45 // A span in a single direction (either rows or columns). Note that |resolvedIni tialPosition|
45 // and |resolvedFinalPosition| are grid areas' indexes, NOT grid lines'. Iterati ng over the 46 // and |resolvedFinalPosition| are grid areas' indexes, NOT grid lines'. Iterati ng over the
46 // span should include both |resolvedInitialPosition| and |resolvedFinalPosition | to be correct. 47 // span should include both |resolvedInitialPosition| and |resolvedFinalPosition | to be correct.
47 struct GridSpan { 48 struct GridSpan {
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 182
182 GridSpan columns; 183 GridSpan columns;
183 GridSpan rows; 184 GridSpan rows;
184 }; 185 };
185 186
186 typedef HashMap<String, GridCoordinate> NamedGridAreaMap; 187 typedef HashMap<String, GridCoordinate> NamedGridAreaMap;
187 188
188 } // namespace blink 189 } // namespace blink
189 190
190 #endif // GridCoordinate_h 191 #endif // GridCoordinate_h
OLDNEW
« no previous file with comments | « Source/core/layout/ColumnInfo.h ('k') | Source/platform/Timer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698