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

Unified Diff: Source/core/html/forms/SearchInputType.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/SearchInputType.h
diff --git a/Source/core/html/forms/SearchInputType.h b/Source/core/html/forms/SearchInputType.h
index 0691e0f5738421ec64d159bc77be37500e0a0e9a..58c4fd10966dd9c83b2ecebbf8f2403003a56498 100644
--- a/Source/core/html/forms/SearchInputType.h
+++ b/Source/core/html/forms/SearchInputType.h
@@ -45,7 +45,7 @@ public:
private:
SearchInputType(HTMLInputElement&);
virtual void countUsage() override;
- virtual RenderObject* createRenderer(RenderStyle*) const override;
+ virtual RenderObject* createRenderer(const RenderStyle*) const override;
virtual const AtomicString& formControlType() const override;
virtual bool shouldRespectSpeechAttribute() override;
virtual bool needsContainer() const override;

Powered by Google App Engine
This is Rietveld 408576698