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

Unified Diff: sky/engine/core/rendering/style/StyleVisualData.h

Issue 714013002: Remove some more zoom-related code. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: merge to ToT Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/core/rendering/RenderView.cpp ('k') | sky/engine/core/rendering/style/StyleVisualData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/rendering/style/StyleVisualData.h
diff --git a/sky/engine/core/rendering/style/StyleVisualData.h b/sky/engine/core/rendering/style/StyleVisualData.h
index 006f1b9a8ac7416e64621f7ef7e26e8a3156ecfb..ab8e9d8a9ba65e468e901dd4e76cb2261e851d1b 100644
--- a/sky/engine/core/rendering/style/StyleVisualData.h
+++ b/sky/engine/core/rendering/style/StyleVisualData.h
@@ -42,8 +42,7 @@ public:
{
return clip == o.clip
&& hasAutoClip == o.hasAutoClip
- && textDecoration == o.textDecoration
- && m_zoom == o.m_zoom;
+ && textDecoration == o.textDecoration;
}
bool operator!=(const StyleVisualData& o) const { return !(*this == o); }
@@ -51,7 +50,6 @@ public:
bool hasAutoClip : 1;
unsigned textDecoration : TextDecorationBits; // Text decorations defined *only* by this element.
- float m_zoom;
private:
StyleVisualData();
« no previous file with comments | « sky/engine/core/rendering/RenderView.cpp ('k') | sky/engine/core/rendering/style/StyleVisualData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698