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

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

Issue 923953002: Move rendering/RenderImage* to layout/LayoutImage* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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
« no previous file with comments | « Source/core/layout/LayoutImageResourceStyleImage.cpp ('k') | Source/core/layout/LayoutObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutObject.h
diff --git a/Source/core/layout/LayoutObject.h b/Source/core/layout/LayoutObject.h
index 76a4b8a42bcfd6064fb59eb4a0fb5a7bd55be138..4de2448ffde63552648d34a1db1d236c5997830e 100644
--- a/Source/core/layout/LayoutObject.h
+++ b/Source/core/layout/LayoutObject.h
@@ -355,7 +355,7 @@ public:
bool isRenderFullScreenPlaceholder() const { return isOfType(LayoutObjectRenderFullScreenPlaceholder); }
bool isRenderGrid() const { return isOfType(LayoutObjectRenderGrid); }
bool isRenderIFrame() const { return isOfType(LayoutObjectRenderIFrame); }
- bool isRenderImage() const { return isOfType(LayoutObjectRenderImage); }
+ bool isLayoutImage() const { return isOfType(LayoutObjectLayoutImage); }
bool isLayoutMultiColumnSet() const { return isOfType(LayoutObjectLayoutMultiColumnSet); }
bool isLayoutMultiColumnSpannerPlaceholder() const { return isOfType(LayoutObjectLayoutMultiColumnSpannerPlaceholder); }
bool isLayoutRegion() const { return isOfType(LayoutObjectLayoutRegion); }
@@ -1093,7 +1093,7 @@ protected:
LayoutObjectRenderFullScreenPlaceholder,
LayoutObjectRenderGrid,
LayoutObjectRenderIFrame,
- LayoutObjectRenderImage,
+ LayoutObjectLayoutImage,
LayoutObjectRenderInline,
LayoutObjectLayoutMultiColumnSet,
LayoutObjectLayoutMultiColumnSpannerPlaceholder,
« no previous file with comments | « Source/core/layout/LayoutImageResourceStyleImage.cpp ('k') | Source/core/layout/LayoutObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698