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

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

Issue 2844083005: Generate enum/getters/setters/mappings for box-decoration-break. (Closed)
Patch Set: Rebase 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
Index: third_party/WebKit/Source/core/style/ComputedStyle.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
index ebabfef8b1426d1a663d5073ecf9a38de55537c0..8eaf87b1865a6b750ab8d22f467fe6372cb110d0 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -799,17 +799,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
a);
}
- // -webkit-box-decoration-break
- static EBoxDecorationBreak InitialBoxDecorationBreak() {
- return EBoxDecorationBreak::kSlice;
- }
- EBoxDecorationBreak BoxDecorationBreak() const {
- return static_cast<EBoxDecorationBreak>(box_data_->box_decoration_break_);
- }
- void SetBoxDecorationBreak(EBoxDecorationBreak b) {
- SET_VAR(box_data_, box_decoration_break_, static_cast<unsigned>(b));
- }
-
// -webkit-box-lines
static EBoxLines InitialBoxLines() { return SINGLE; }
EBoxLines BoxLines() const {

Powered by Google App Engine
This is Rietveld 408576698