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

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

Issue 613783002: Smaller vtbls in RenderObject (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: RenderObject: Cut down vtbls a bit Created 6 years, 3 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/rendering/RenderView.h
diff --git a/Source/core/rendering/RenderView.h b/Source/core/rendering/RenderView.h
index 143d41560cb28b864952cceaf7f88888683b6ea6..4e913cd11aa2fc39d84bd29630d3f8b2201c35c7 100644
--- a/Source/core/rendering/RenderView.h
+++ b/Source/core/rendering/RenderView.h
@@ -54,7 +54,7 @@ public:
virtual const char* renderName() const OVERRIDE { return "RenderView"; }
- virtual bool isRenderView() const OVERRIDE { return true; }
+ virtual bool isOfType(RenderObjectType type) const OVERRIDE { return type == RenderObjectRenderView || RenderBlockFlow::isOfType(type); }
virtual LayerType layerTypeRequired() const OVERRIDE { return NormalLayer; }

Powered by Google App Engine
This is Rietveld 408576698