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

Side by Side Diff: Source/core/rendering/style/StyleGridData.h

Issue 61753010: Move CSSAnimationData and CSSAnimationDataList to platform/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 10 matching lines...) Expand all
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THI S 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THI S
22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 * 23 *
24 */ 24 */
25 25
26 #ifndef StyleGridData_h 26 #ifndef StyleGridData_h
27 #define StyleGridData_h 27 #define StyleGridData_h
28 28
29 #include "core/rendering/style/GridCoordinate.h" 29 #include "core/rendering/style/GridCoordinate.h"
30 #include "core/rendering/style/GridTrackSize.h" 30 #include "core/rendering/style/GridTrackSize.h"
31 #include "core/rendering/style/RenderStyleConstants.h" 31 #include "platform/RenderStyleConstants.h"
32 #include "wtf/PassRefPtr.h" 32 #include "wtf/PassRefPtr.h"
33 #include "wtf/RefCounted.h" 33 #include "wtf/RefCounted.h"
34 #include "wtf/Vector.h" 34 #include "wtf/Vector.h"
35 #include "wtf/text/WTFString.h" 35 #include "wtf/text/WTFString.h"
36 36
37 namespace WebCore { 37 namespace WebCore {
38 38
39 typedef HashMap<String, Vector<size_t> > NamedGridLinesMap; 39 typedef HashMap<String, Vector<size_t> > NamedGridLinesMap;
40 typedef HashMap<size_t, Vector<String>, WTF::IntHash<size_t>, WTF::UnsignedWithZ eroKeyHashTraits<size_t> > OrderedNamedGridLines; 40 typedef HashMap<size_t, Vector<String>, WTF::IntHash<size_t>, WTF::UnsignedWithZ eroKeyHashTraits<size_t> > OrderedNamedGridLines;
41 41
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 size_t m_namedGridAreaColumnCount; 77 size_t m_namedGridAreaColumnCount;
78 78
79 private: 79 private:
80 StyleGridData(); 80 StyleGridData();
81 StyleGridData(const StyleGridData&); 81 StyleGridData(const StyleGridData&);
82 }; 82 };
83 83
84 } // namespace WebCore 84 } // namespace WebCore
85 85
86 #endif // StyleGridData_h 86 #endif // StyleGridData_h
OLDNEW
« no previous file with comments | « Source/core/rendering/style/StyleBoxData.cpp ('k') | Source/core/rendering/style/StyleMarqueeData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698