| 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 3d103410a6c3cd0663eea30d0e2d97ffa91c5402..c3123d1cf83eaef43939e4ac31bc688be450c322 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -1871,16 +1871,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
|
| color.IsCurrentColor());
|
| }
|
|
|
| - // -webkit-text-security
|
| - static ETextSecurity InitialTextSecurity() { return ETextSecurity::kNone; }
|
| - ETextSecurity TextSecurity() const {
|
| - return static_cast<ETextSecurity>(rare_inherited_data_->text_security_);
|
| - }
|
| - void SetTextSecurity(ETextSecurity a_text_security) {
|
| - SET_VAR(rare_inherited_data_, text_security_,
|
| - static_cast<unsigned>(a_text_security));
|
| - }
|
| -
|
| // -webkit-text-stroke-color
|
| void SetTextStrokeColor(const StyleColor& color) {
|
| SET_VAR(rare_inherited_data_, text_stroke_color_, color.Resolve(Color()));
|
|
|