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

Unified Diff: third_party/WebKit/Source/core/style/StyleMultiColData.h

Issue 2916843002: Move StyleMultiColData::RuleWidth to ComputedStyle. (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/StyleMultiColData.h
diff --git a/third_party/WebKit/Source/core/style/StyleMultiColData.h b/third_party/WebKit/Source/core/style/StyleMultiColData.h
index bc9d257a5b0a2fc790ed52329f50e0c7482078bf..122465cd3143099d3d886e9978d6bfd43292c8ea 100644
--- a/third_party/WebKit/Source/core/style/StyleMultiColData.h
+++ b/third_party/WebKit/Source/core/style/StyleMultiColData.h
@@ -47,13 +47,6 @@ class CORE_EXPORT StyleMultiColData : public RefCounted<StyleMultiColData> {
bool operator==(const StyleMultiColData&) const;
bool operator!=(const StyleMultiColData& o) const { return !(*this == o); }
- unsigned short RuleWidth() const {
- if (rule_.Style() == EBorderStyle::kNone ||
- rule_.Style() == EBorderStyle::kHidden)
- return 0;
- return rule_.Width();
- }
-
float width_;
unsigned short count_;
float gap_;
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698