Index: Source/core/html/HTMLInputElement.h |
diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h |
index 5fccef09af19c9d5bfd346d4373ea7bb0b392cc5..bc4f31fe6913e31ef673f47fe758e870e57ae08e 100644 |
--- a/Source/core/html/HTMLInputElement.h |
+++ b/Source/core/html/HTMLInputElement.h |
@@ -240,8 +240,8 @@ public: |
virtual void setRangeText(const String& replacement, ExceptionState&) override final; |
virtual void setRangeText(const String& replacement, unsigned start, unsigned end, const String& selectionMode, ExceptionState&) override final; |
- bool hasImageLoader() const { return m_imageLoader; } |
- HTMLImageLoader* imageLoader(); |
+ HTMLImageLoader* imageLoader() const { return m_imageLoader.get(); } |
+ HTMLImageLoader& ensureImageLoader(); |
bool setupDateTimeChooserParameters(DateTimeChooserParameters&); |