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

Side by Side Diff: third_party/WebKit/Source/core/style/StyleBoxData.h

Issue 2174703002: Organize public ComputedStyle methods by property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 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 14 matching lines...) Expand all
25 #ifndef StyleBoxData_h 25 #ifndef StyleBoxData_h
26 #define StyleBoxData_h 26 #define StyleBoxData_h
27 27
28 #include "core/style/ComputedStyleConstants.h" 28 #include "core/style/ComputedStyleConstants.h"
29 #include "platform/Length.h" 29 #include "platform/Length.h"
30 #include "wtf/PassRefPtr.h" 30 #include "wtf/PassRefPtr.h"
31 #include "wtf/RefCounted.h" 31 #include "wtf/RefCounted.h"
32 32
33 namespace blink { 33 namespace blink {
34 34
35 // TODO(sashab): Move this into a private class on ComputedStyle, and remove
36 // all methods on it, merging them into copy/creation methods on ComputedStyle
37 // instead. Keep the allocation logic, only allocating a new object if needed.
35 class StyleBoxData : public RefCounted<StyleBoxData> { 38 class StyleBoxData : public RefCounted<StyleBoxData> {
36 public: 39 public:
37 static PassRefPtr<StyleBoxData> create() { return adoptRef(new StyleBoxData) ; } 40 static PassRefPtr<StyleBoxData> create() { return adoptRef(new StyleBoxData) ; }
38 PassRefPtr<StyleBoxData> copy() const { return adoptRef(new StyleBoxData(*th is)); } 41 PassRefPtr<StyleBoxData> copy() const { return adoptRef(new StyleBoxData(*th is)); }
39 42
40 bool operator==(const StyleBoxData&) const; 43 bool operator==(const StyleBoxData&) const;
41 bool operator!=(const StyleBoxData& o) const 44 bool operator!=(const StyleBoxData& o) const
42 { 45 {
43 return !(*this == o); 46 return !(*this == o);
44 } 47 }
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 82
80 int m_zIndex; 83 int m_zIndex;
81 unsigned m_hasAutoZIndex : 1; 84 unsigned m_hasAutoZIndex : 1;
82 unsigned m_boxSizing : 1; // EBoxSizing 85 unsigned m_boxSizing : 1; // EBoxSizing
83 unsigned m_boxDecorationBreak : 1; // EBoxDecorationBreak 86 unsigned m_boxDecorationBreak : 1; // EBoxDecorationBreak
84 }; 87 };
85 88
86 } // namespace blink 89 } // namespace blink
87 90
88 #endif // StyleBoxData_h 91 #endif // StyleBoxData_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleBackgroundData.h ('k') | third_party/WebKit/Source/core/style/StyleInheritedData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698