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

Unified Diff: Source/core/html/HTMLInputElement.h

Issue 14859003: Remove the compile time flag for DATALIST Element. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebasing after r150849 Created 7 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 | « Source/core/html/HTMLDataListElement.idl ('k') | Source/core/html/HTMLInputElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLInputElement.h
diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h
index ebc4e5429c3bc047bcc208a34149135a9940f100..6d02604a635ef14a0326eb84891873bb025a4e7e 100644
--- a/Source/core/html/HTMLInputElement.h
+++ b/Source/core/html/HTMLInputElement.h
@@ -75,9 +75,7 @@ public:
bool getAllowedValueStep(Decimal*) const;
StepRange createStepRange(AnyStepHandling) const;
-#if ENABLE(DATALIST_ELEMENT)
Decimal findClosestTickMarkValue(const Decimal&);
-#endif
// Implementations of HTMLInputElement::stepUp() and stepDown().
void stepUp(int, ExceptionCode&);
@@ -240,11 +238,9 @@ public:
virtual bool willRespondToMouseClickEvents() OVERRIDE;
-#if ENABLE(DATALIST_ELEMENT)
HTMLElement* list() const;
HTMLDataListElement* dataList() const;
void listAttributeTargetChanged();
-#endif
HTMLInputElement* checkedRadioButtonForGroup() const;
bool isInRequiredRadioButtonGroup();
@@ -382,9 +378,7 @@ private:
virtual void subtreeHasChanged();
-#if ENABLE(DATALIST_ELEMENT)
void resetListAttributeTargetObserver();
-#endif
void parseMaxLengthAttribute(const AtomicString&);
void updateValueIfNeeded();
@@ -409,9 +403,7 @@ private:
bool m_isActivatedSubmit : 1;
unsigned m_autocomplete : 2; // AutoCompleteSetting
bool m_isAutofilled : 1;
-#if ENABLE(DATALIST_ELEMENT)
bool m_hasNonEmptyList : 1;
-#endif
bool m_stateRestored : 1;
bool m_parsingInProgress : 1;
bool m_valueAttributeWasUpdatedAfterParsing : 1;
@@ -423,9 +415,7 @@ private:
// that it lives as long as its owning element lives. If we move the loader into
// the ImageInput object we may delete the loader while this element lives on.
OwnPtr<HTMLImageLoader> m_imageLoader;
-#if ENABLE(DATALIST_ELEMENT)
OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver;
-#endif
};
} //namespace
« no previous file with comments | « Source/core/html/HTMLDataListElement.idl ('k') | Source/core/html/HTMLInputElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698