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

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

Issue 462133002: Remove custom style building functions for 'clip'. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased. Created 6 years, 4 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
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 23 matching lines...) Expand all
34 34
35 class StyleVisualData : public RefCounted<StyleVisualData> { 35 class StyleVisualData : public RefCounted<StyleVisualData> {
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 && hasAutoClip == o.hasAutoClip
45 && textDecoration == o.textDecoration 45 && textDecoration == o.textDecoration
46 && m_zoom == o.m_zoom; 46 && m_zoom == o.m_zoom;
47 } 47 }
48 bool operator!=(const StyleVisualData& o) const { return !(*this == o); } 48 bool operator!=(const StyleVisualData& o) const { return !(*this == o); }
49 49
50 LengthBox clip; 50 LengthBox clip;
51 bool hasClip : 1; 51 bool hasAutoClip : 1;
52 unsigned textDecoration : TextDecorationBits; // Text decorations defined *o nly* by this element. 52 unsigned textDecoration : TextDecorationBits; // Text decorations defined *o nly* by this element.
53 53
54 float m_zoom; 54 float m_zoom;
55 55
56 private: 56 private:
57 StyleVisualData(); 57 StyleVisualData();
58 StyleVisualData(const StyleVisualData&); 58 StyleVisualData(const StyleVisualData&);
59 }; 59 };
60 60
61 } // namespace blink 61 } // namespace blink
62 62
63 #endif // StyleVisualData_h 63 #endif // StyleVisualData_h
OLDNEW
« no previous file with comments | « Source/core/rendering/style/RenderStyle.cpp ('k') | Source/core/rendering/style/StyleVisualData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698