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

Unified Diff: Source/core/rendering/RenderEmbeddedObject.h

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch Created 6 years, 2 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/rendering/RenderDetailsMarker.h ('k') | Source/core/rendering/RenderFieldset.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderEmbeddedObject.h
diff --git a/Source/core/rendering/RenderEmbeddedObject.h b/Source/core/rendering/RenderEmbeddedObject.h
index 06506ab972c932e782ece71518854cc963aad7c0..f0799e13070e526610167f60622851409e818e3b 100644
--- a/Source/core/rendering/RenderEmbeddedObject.h
+++ b/Source/core/rendering/RenderEmbeddedObject.h
@@ -44,23 +44,23 @@ public:
bool showsUnavailablePluginIndicator() const;
private:
- virtual void paintContents(PaintInfo&, const LayoutPoint&) OVERRIDE FINAL;
- virtual void paintReplaced(PaintInfo&, const LayoutPoint&) OVERRIDE FINAL;
- virtual void paint(PaintInfo&, const LayoutPoint&) OVERRIDE FINAL;
+ virtual void paintContents(PaintInfo&, const LayoutPoint&) override final;
+ virtual void paintReplaced(PaintInfo&, const LayoutPoint&) override final;
+ virtual void paint(PaintInfo&, const LayoutPoint&) override final;
- virtual void layout() OVERRIDE FINAL;
+ virtual void layout() override final;
- virtual const char* renderName() const OVERRIDE { return "RenderEmbeddedObject"; }
- virtual bool isEmbeddedObject() const OVERRIDE FINAL { return true; }
- virtual RenderBox* embeddedContentBox() const OVERRIDE FINAL;
+ virtual const char* renderName() const override { return "RenderEmbeddedObject"; }
+ virtual bool isEmbeddedObject() const override final { return true; }
+ virtual RenderBox* embeddedContentBox() const override final;
- virtual LayerType layerTypeRequired() const OVERRIDE FINAL;
+ virtual LayerType layerTypeRequired() const override final;
- virtual bool scroll(ScrollDirection, ScrollGranularity, float multiplier) OVERRIDE FINAL;
+ virtual bool scroll(ScrollDirection, ScrollGranularity, float multiplier) override final;
bool getReplacementTextGeometry(const LayoutPoint& accumulatedOffset, FloatRect& contentRect, Path&, FloatRect& replacementTextRect, Font&, TextRun&, float& textWidth) const;
- virtual CompositingReasons additionalCompositingReasons() const OVERRIDE;
+ virtual CompositingReasons additionalCompositingReasons() const override;
bool m_showsUnavailablePluginIndicator;
PluginUnavailabilityReason m_pluginUnavailabilityReason;
« no previous file with comments | « Source/core/rendering/RenderDetailsMarker.h ('k') | Source/core/rendering/RenderFieldset.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698