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

Side by Side Diff: Source/core/layout/LayoutGeometryMap.h

Issue 1318713003: Make classes and structures in core/layout fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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/LayoutFrameSet.h ('k') | Source/core/layout/LayoutGeometryMapStep.h » ('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) 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2012 Apple 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 15 matching lines...) Expand all
26 #ifndef LayoutGeometryMap_h 26 #ifndef LayoutGeometryMap_h
27 #define LayoutGeometryMap_h 27 #define LayoutGeometryMap_h
28 28
29 #include "core/CoreExport.h" 29 #include "core/CoreExport.h"
30 #include "core/layout/LayoutGeometryMapStep.h" 30 #include "core/layout/LayoutGeometryMapStep.h"
31 #include "core/layout/LayoutObject.h" 31 #include "core/layout/LayoutObject.h"
32 #include "platform/geometry/FloatPoint.h" 32 #include "platform/geometry/FloatPoint.h"
33 #include "platform/geometry/FloatQuad.h" 33 #include "platform/geometry/FloatQuad.h"
34 #include "platform/geometry/IntSize.h" 34 #include "platform/geometry/IntSize.h"
35 #include "platform/geometry/LayoutSize.h" 35 #include "platform/geometry/LayoutSize.h"
36 #include "wtf/Allocator.h"
36 #include "wtf/OwnPtr.h" 37 #include "wtf/OwnPtr.h"
37 38
38 namespace blink { 39 namespace blink {
39 40
40 class DeprecatedPaintLayer; 41 class DeprecatedPaintLayer;
41 class LayoutBoxModelObject; 42 class LayoutBoxModelObject;
42 class TransformationMatrix; 43 class TransformationMatrix;
43 class TransformState; 44 class TransformState;
44 45
45 // Can be used while walking the layout tree to cache data about offsets and tra nsforms. 46 // Can be used while walking the layout tree to cache data about offsets and tra nsforms.
46 class CORE_EXPORT LayoutGeometryMap { 47 class CORE_EXPORT LayoutGeometryMap {
48 DISALLOW_ALLOCATION();
47 WTF_MAKE_NONCOPYABLE(LayoutGeometryMap); 49 WTF_MAKE_NONCOPYABLE(LayoutGeometryMap);
48 public: 50 public:
49 LayoutGeometryMap(MapCoordinatesFlags = UseTransforms); 51 LayoutGeometryMap(MapCoordinatesFlags = UseTransforms);
50 ~LayoutGeometryMap(); 52 ~LayoutGeometryMap();
51 53
52 MapCoordinatesFlags mapCoordinatesFlags() const { return m_mapCoordinatesFla gs; } 54 MapCoordinatesFlags mapCoordinatesFlags() const { return m_mapCoordinatesFla gs; }
53 55
54 FloatRect absoluteRect(const FloatRect& rect) const 56 FloatRect absoluteRect(const FloatRect& rect) const
55 { 57 {
56 return mapToContainer(rect, 0).boundingBox(); 58 return mapToContainer(rect, 0).boundingBox();
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 int m_transformedStepsCount; 102 int m_transformedStepsCount;
101 int m_fixedStepsCount; 103 int m_fixedStepsCount;
102 LayoutGeometryMapSteps m_mapping; 104 LayoutGeometryMapSteps m_mapping;
103 LayoutSize m_accumulatedOffset; 105 LayoutSize m_accumulatedOffset;
104 MapCoordinatesFlags m_mapCoordinatesFlags; 106 MapCoordinatesFlags m_mapCoordinatesFlags;
105 }; 107 };
106 108
107 } // namespace blink 109 } // namespace blink
108 110
109 #endif // LayoutGeometryMap_h 111 #endif // LayoutGeometryMap_h
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutFrameSet.h ('k') | Source/core/layout/LayoutGeometryMapStep.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698