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

Side by Side Diff: Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.h

Issue 419053005: Fix crash in HTMLInputElement::setupDateTimeChooserParameters (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing Created 6 years, 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 virtual void readonlyAttributeChanged() OVERRIDE FINAL; 108 virtual void readonlyAttributeChanged() OVERRIDE FINAL;
109 virtual void requiredAttributeChanged() OVERRIDE FINAL; 109 virtual void requiredAttributeChanged() OVERRIDE FINAL;
110 virtual void restoreFormControlState(const FormControlState&) OVERRIDE FINAL ; 110 virtual void restoreFormControlState(const FormControlState&) OVERRIDE FINAL ;
111 virtual FormControlState saveFormControlState() const OVERRIDE FINAL; 111 virtual FormControlState saveFormControlState() const OVERRIDE FINAL;
112 virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavi or) OVERRIDE FINAL; 112 virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavi or) OVERRIDE FINAL;
113 virtual void stepAttributeChanged() OVERRIDE FINAL; 113 virtual void stepAttributeChanged() OVERRIDE FINAL;
114 virtual void updateView() OVERRIDE FINAL; 114 virtual void updateView() OVERRIDE FINAL;
115 virtual void valueAttributeChanged() OVERRIDE; 115 virtual void valueAttributeChanged() OVERRIDE;
116 virtual void listAttributeTargetChanged() OVERRIDE FINAL; 116 virtual void listAttributeTargetChanged() OVERRIDE FINAL;
117 virtual void updateClearButtonVisibility() OVERRIDE FINAL; 117 virtual void updateClearButtonVisibility() OVERRIDE FINAL;
118 virtual TextDirection computedTextDirection() OVERRIDE FINAL;
118 119
119 DateTimeEditElement* dateTimeEditElement() const; 120 DateTimeEditElement* dateTimeEditElement() const;
120 SpinButtonElement* spinButtonElement() const; 121 SpinButtonElement* spinButtonElement() const;
121 ClearButtonElement* clearButtonElement() const; 122 ClearButtonElement* clearButtonElement() const;
122 PickerIndicatorElement* pickerIndicatorElement() const; 123 PickerIndicatorElement* pickerIndicatorElement() const;
123 bool containsFocusedShadowElement() const; 124 bool containsFocusedShadowElement() const;
124 void showPickerIndicator(); 125 void showPickerIndicator();
125 void hidePickerIndicator(); 126 void hidePickerIndicator();
126 void updatePickerIndicatorVisibility(); 127 void updatePickerIndicatorVisibility();
127 128
128 bool m_isDestroyingShadowSubtree; 129 bool m_isDestroyingShadowSubtree;
129 bool m_pickerIndicatorIsVisible; 130 bool m_pickerIndicatorIsVisible;
130 bool m_pickerIndicatorIsAlwaysVisible; 131 bool m_pickerIndicatorIsAlwaysVisible;
131 }; 132 };
132 133
133 } // namespace blink 134 } // namespace blink
134 135
135 #endif 136 #endif
136 #endif // BaseMultipleFieldsDateAndTimeInputType_h 137 #endif // BaseMultipleFieldsDateAndTimeInputType_h
OLDNEW
« no previous file with comments | « Source/core/html/HTMLInputElement.cpp ('k') | Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698