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

Unified Diff: Source/core/layout/LayoutThemeChromiumDefault.h

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/layout/LayoutThemeChromiumDefault.h
diff --git a/Source/core/layout/LayoutThemeChromiumDefault.h b/Source/core/layout/LayoutThemeChromiumDefault.h
index b870aa71e2c0bc3d98d55a653557c48bf0735c12..572e2ecf6db23be02ddd4435c2966a5b7f6b2977 100644
--- a/Source/core/layout/LayoutThemeChromiumDefault.h
+++ b/Source/core/layout/LayoutThemeChromiumDefault.h
@@ -59,27 +59,27 @@ public:
static void setCaretBlinkInterval(double);
virtual double caretBlinkIntervalInternal() const override;
- virtual bool paintCheckbox(RenderObject*, const PaintInfo&, const IntRect&) override;
+ virtual bool paintCheckbox(LayoutObject*, const PaintInfo&, const IntRect&) override;
virtual void setCheckboxSize(RenderStyle&) const override;
- virtual bool paintRadio(RenderObject*, const PaintInfo&, const IntRect&) override;
+ virtual bool paintRadio(LayoutObject*, const PaintInfo&, const IntRect&) override;
virtual void setRadioSize(RenderStyle&) const override;
- virtual bool paintButton(RenderObject*, const PaintInfo&, const IntRect&) override;
- virtual bool paintTextField(RenderObject*, const PaintInfo&, const IntRect&) override;
- virtual bool paintMenuList(RenderObject*, const PaintInfo&, const IntRect&) override;
- virtual bool paintMenuListButton(RenderObject*, const PaintInfo&, const IntRect&) override;
- virtual bool paintSliderTrack(RenderObject*, const PaintInfo&, const IntRect&) override;
- virtual bool paintSliderThumb(RenderObject*, const PaintInfo&, const IntRect&) override;
+ virtual bool paintButton(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ virtual bool paintTextField(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ virtual bool paintMenuList(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ virtual bool paintMenuListButton(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ virtual bool paintSliderTrack(LayoutObject*, const PaintInfo&, const IntRect&) override;
+ virtual bool paintSliderThumb(LayoutObject*, const PaintInfo&, const IntRect&) override;
virtual void adjustInnerSpinButtonStyle(RenderStyle&, Element*) const override;
- virtual bool paintInnerSpinButton(RenderObject*, const PaintInfo&, const IntRect&) override;
+ virtual bool paintInnerSpinButton(LayoutObject*, const PaintInfo&, const IntRect&) override;
virtual bool popsMenuBySpaceKey() const override final { return true; }
virtual bool popsMenuByReturnKey() const override final { return true; }
virtual bool popsMenuByAltDownUpOrF4Key() const override { return true; }
- virtual bool paintProgressBar(RenderObject*, const PaintInfo&, const IntRect&) override;
+ virtual bool paintProgressBar(LayoutObject*, const PaintInfo&, const IntRect&) override;
virtual bool shouldOpenPickerWithF4Key() const override;
« no previous file with comments | « Source/core/layout/LayoutThemeChromiumAndroid.cpp ('k') | Source/core/layout/LayoutThemeChromiumDefault.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698