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

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

Issue 2922483004: Generate enum/getters/setters/mappings for image-rendering. (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
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 5a9ad6137972cfafafe4d8a47cdf09c327ee2952..c5065f3859d225bfc658060baff48803e4fb411e 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -1007,17 +1007,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
SET_VAR(rare_inherited_data_, respect_image_orientation_, v);
}
- // image-rendering
- static EImageRendering InitialImageRendering() {
- return EImageRendering::kAuto;
- }
- EImageRendering ImageRendering() const {
- return static_cast<EImageRendering>(rare_inherited_data_->image_rendering_);
- }
- void SetImageRendering(EImageRendering v) {
- SET_VAR(rare_inherited_data_, image_rendering_, static_cast<unsigned>(v));
- }
-
// isolation
static EIsolation InitialIsolation() { return kIsolationAuto; }
EIsolation Isolation() const {

Powered by Google App Engine
This is Rietveld 408576698