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

Unified Diff: Source/core/html/forms/ImageInputType.h

Issue 889563002: Make RenderObject::style() return a const object (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix a crashers (everything is building!) Created 5 years, 11 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
Index: Source/core/html/forms/ImageInputType.h
diff --git a/Source/core/html/forms/ImageInputType.h b/Source/core/html/forms/ImageInputType.h
index c32c9aa23c81ac17cb76de9ee9ae74db7e2ea3b6..7f344a9a6e84147c3621e91db9e048cd276c92b0 100644
--- a/Source/core/html/forms/ImageInputType.h
+++ b/Source/core/html/forms/ImageInputType.h
@@ -50,7 +50,7 @@ private:
virtual bool appendFormData(FormDataList&, bool) const override;
virtual String resultForDialogSubmit() const override;
virtual bool supportsValidation() const override;
- virtual RenderObject* createRenderer(RenderStyle*) const override;
+ virtual RenderObject* createRenderer(const RenderStyle*) const override;
virtual void handleDOMActivateEvent(Event*) override;
virtual void altAttributeChanged() override;
virtual void srcAttributeChanged() override;

Powered by Google App Engine
This is Rietveld 408576698