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

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

Issue 319283002: [FastTextAutosizer] Inherit the text autosizing multiplier (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove non-critical changes Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 25 matching lines...) Expand all
36 public: 36 public:
37 static PassRefPtr<StyleVisualData> create() { return adoptRef(new StyleVisua lData); } 37 static PassRefPtr<StyleVisualData> create() { return adoptRef(new StyleVisua lData); }
38 PassRefPtr<StyleVisualData> copy() const { return adoptRef(new StyleVisualDa ta(*this)); } 38 PassRefPtr<StyleVisualData> copy() const { return adoptRef(new StyleVisualDa ta(*this)); }
39 ~StyleVisualData(); 39 ~StyleVisualData();
40 40
41 bool operator==(const StyleVisualData& o) const 41 bool operator==(const StyleVisualData& o) const
42 { 42 {
43 return clip == o.clip 43 return clip == o.clip
44 && hasClip == o.hasClip 44 && hasClip == o.hasClip
45 && textDecoration == o.textDecoration 45 && textDecoration == o.textDecoration
46 && m_textAutosizingMultiplier == o.m_textAutosizingMultiplier
47 && m_zoom == o.m_zoom; 46 && m_zoom == o.m_zoom;
48 } 47 }
49 bool operator!=(const StyleVisualData& o) const { return !(*this == o); } 48 bool operator!=(const StyleVisualData& o) const { return !(*this == o); }
50 49
51 LengthBox clip; 50 LengthBox clip;
52 bool hasClip : 1; 51 bool hasClip : 1;
53 unsigned textDecoration : TextDecorationBits; // Text decorations defined *o nly* by this element. 52 unsigned textDecoration : TextDecorationBits; // Text decorations defined *o nly* by this element.
54 53
55 float m_textAutosizingMultiplier;
56 float m_zoom; 54 float m_zoom;
57 55
58 private: 56 private:
59 StyleVisualData(); 57 StyleVisualData();
60 StyleVisualData(const StyleVisualData&); 58 StyleVisualData(const StyleVisualData&);
61 }; 59 };
62 60
63 } // namespace WebCore 61 } // namespace WebCore
64 62
65 #endif // StyleVisualData_h 63 #endif // StyleVisualData_h
OLDNEW
« no previous file with comments | « Source/core/rendering/style/StyleInheritedData.cpp ('k') | Source/core/rendering/style/StyleVisualData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698