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

Unified Diff: third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp

Issue 2881003002: Cleanup StyleRareInheritedData. (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/style/StyleRareInheritedData.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/StyleRareInheritedData.cpp
diff --git a/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp b/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp
index 5d003ceae551c24ce8223f79739e6a2034cf86cb..78d2dda2c428f59b9f31c293617aa9c3eda94f96 100644
--- a/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp
+++ b/third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp
@@ -112,81 +112,6 @@ StyleRareInheritedData::StyleRareInheritedData()
tab_size_(ComputedStyle::InitialTabSize()),
text_size_adjust_(ComputedStyle::InitialTextSizeAdjust()) {}
-StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
- : RefCounted<StyleRareInheritedData>(),
- list_style_image_(o.list_style_image_),
- text_stroke_color_(o.text_stroke_color_),
- text_stroke_width_(o.text_stroke_width_),
- text_fill_color_(o.text_fill_color_),
- text_emphasis_color_(o.text_emphasis_color_),
- caret_color_(o.caret_color_),
- visited_link_text_stroke_color_(o.visited_link_text_stroke_color_),
- visited_link_text_fill_color_(o.visited_link_text_fill_color_),
- visited_link_text_emphasis_color_(o.visited_link_text_emphasis_color_),
- visited_link_caret_color_(o.visited_link_caret_color_),
- text_shadow_(o.text_shadow_),
- highlight_(o.highlight_),
- cursor_data_(o.cursor_data_),
- text_indent_(o.text_indent_),
- effective_zoom_(o.effective_zoom_),
- widows_(o.widows_),
- orphans_(o.orphans_),
- text_stroke_color_is_current_color_(
- o.text_stroke_color_is_current_color_),
- text_fill_color_is_current_color_(o.text_fill_color_is_current_color_),
- text_emphasis_color_is_current_color_(
- o.text_emphasis_color_is_current_color_),
- caret_color_is_current_color_(o.caret_color_is_current_color_),
- caret_color_is_auto_(o.caret_color_is_auto_),
- visited_link_text_stroke_color_is_current_color_(
- o.visited_link_text_stroke_color_is_current_color_),
- visited_link_text_fill_color_is_current_color_(
- o.visited_link_text_fill_color_is_current_color_),
- visited_link_text_emphasis_color_is_current_color_(
- o.visited_link_text_emphasis_color_is_current_color_),
- visited_link_caret_color_is_current_color_(
- o.visited_link_caret_color_is_current_color_),
- visited_link_caret_color_is_auto_(o.visited_link_caret_color_is_auto_),
- text_security_(o.text_security_),
- user_modify_(o.user_modify_),
- word_break_(o.word_break_),
- overflow_wrap_(o.overflow_wrap_),
- line_break_(o.line_break_),
- user_select_(o.user_select_),
- speak_(o.speak_),
- hyphens_(o.hyphens_),
- text_emphasis_fill_(o.text_emphasis_fill_),
- text_emphasis_mark_(o.text_emphasis_mark_),
- text_emphasis_position_(o.text_emphasis_position_),
- text_align_last_(o.text_align_last_),
- text_justify_(o.text_justify_),
- text_orientation_(o.text_orientation_),
- text_combine_(o.text_combine_),
- text_indent_line_(o.text_indent_line_),
- text_indent_type_(o.text_indent_type_),
- image_rendering_(o.image_rendering_),
- text_underline_position_(o.text_underline_position_),
- text_decoration_skip_(o.text_decoration_skip_),
- ruby_position_(o.ruby_position_),
- subtree_will_change_contents_(o.subtree_will_change_contents_),
- self_or_ancestor_has_dir_auto_attribute_(
- o.self_or_ancestor_has_dir_auto_attribute_),
- respect_image_orientation_(o.respect_image_orientation_),
- subtree_is_sticky_(o.subtree_is_sticky_),
- hyphenation_string_(o.hyphenation_string_),
- hyphenation_limit_before_(o.hyphenation_limit_before_),
- hyphenation_limit_after_(o.hyphenation_limit_after_),
- hyphenation_limit_lines_(o.hyphenation_limit_lines_),
- line_height_step_(o.line_height_step_),
- text_emphasis_custom_mark_(o.text_emphasis_custom_mark_),
- tap_highlight_color_(o.tap_highlight_color_),
- applied_text_decorations_(o.applied_text_decorations_),
- tab_size_(o.tab_size_),
- variables_(o.variables_),
- text_size_adjust_(o.text_size_adjust_) {}
-
-StyleRareInheritedData::~StyleRareInheritedData() {}
-
bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const {
return text_stroke_color_ == o.text_stroke_color_ &&
text_stroke_width_ == o.text_stroke_width_ &&
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleRareInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698