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

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

Issue 2861773004: Move border-*-width out of BorderValue and store on SurroundData in ComputedStyle instead (Closed)
Patch Set: meade@'s suggestion 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/ComputedStyleConstants.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/OutlineValue.h
diff --git a/third_party/WebKit/Source/core/style/OutlineValue.h b/third_party/WebKit/Source/core/style/OutlineValue.h
index f26b9ba00a6b7d825f86af85b957311f27b008cb..5cbc5aa5d46c726ac9bc2e256debd5e77dfb63e0 100644
--- a/third_party/WebKit/Source/core/style/OutlineValue.h
+++ b/third_party/WebKit/Source/core/style/OutlineValue.h
@@ -53,9 +53,6 @@ class OutlineValue final : public BorderValue {
int Offset() const { return offset_; }
void SetOffset(int offset) { offset_ = offset; }
- OutlineIsAuto IsAuto() const { return static_cast<OutlineIsAuto>(is_auto_); }
- void SetIsAuto(OutlineIsAuto is_auto) { is_auto_ = is_auto; }
-
private:
int offset_;
};
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyleConstants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698