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

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

Issue 2888323002: Generate getters/setters for border-image. (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
« no previous file with comments | « third_party/WebKit/Source/core/css/ComputedStyleExtraFields.json5 ('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/ComputedStyle.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
index 9aca4cd387a75dd998acecd0d5b64c5b462c8a2b..22c462a19b5772442c51d38e9592deda42f4a0bf 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -426,11 +426,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
}
// Border properties.
- // -webkit-border-image
- static NinePieceImage InitialNinePieceImage() { return NinePieceImage(); }
- const NinePieceImage& BorderImage() const { return BorderImageInternal(); }
- void SetBorderImage(const NinePieceImage& b) { SetBorderImageInternal(b); }
-
// border-image-slice
const LengthBox& BorderImageSlices() const {
return BorderImage().ImageSlices();
@@ -2972,7 +2967,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
SetBorderLeftColorInternal(0);
SetBorderLeftColorInternal(true);
}
- void ResetBorderImage() { SetBorderImageInternal(NinePieceImage()); }
void SetBorderRadius(const LengthSize& s) {
SetBorderTopLeftRadius(s);
« no previous file with comments | « third_party/WebKit/Source/core/css/ComputedStyleExtraFields.json5 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698