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

Unified Diff: Source/core/paint/Transform3DRecorder.h

Issue 1011703005: [Slimming Paint] Allow 3D transforms of different types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: debug strings Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/paint/Transform3DRecorder.h
diff --git a/Source/core/paint/Transform3DRecorder.h b/Source/core/paint/Transform3DRecorder.h
index 1f265433a88434096f7016945a6c29af8001d5b8..49eed038cbfbfe5c3d28fbfea7a98832c8601547 100644
--- a/Source/core/paint/Transform3DRecorder.h
+++ b/Source/core/paint/Transform3DRecorder.h
@@ -14,12 +14,13 @@ class TransformationMatrix;
class Transform3DRecorder {
public:
- Transform3DRecorder(GraphicsContext&, DisplayItemClient, const TransformationMatrix&);
+ Transform3DRecorder(GraphicsContext&, DisplayItemClient, DisplayItem::Type, const TransformationMatrix&);
~Transform3DRecorder();
private:
GraphicsContext& m_context;
DisplayItemClient m_client;
+ DisplayItem::Type m_type;
bool m_skipRecordingForIdentityTransform;
};

Powered by Google App Engine
This is Rietveld 408576698