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

Unified Diff: Source/core/frame/FrameView.h

Issue 926193003: Move rendering/RenderBox to layout/LayoutBox. (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
« no previous file with comments | « Source/core/editing/iterators/TextIterator.cpp ('k') | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/FrameView.h
diff --git a/Source/core/frame/FrameView.h b/Source/core/frame/FrameView.h
index ffb33701f9a130a664f8510bf075d875f0c5a9b4..c7bc32866eb1c13fcc521e56e55df697ba27cab3 100644
--- a/Source/core/frame/FrameView.h
+++ b/Source/core/frame/FrameView.h
@@ -55,7 +55,7 @@ class LocalFrame;
class KURL;
class Node;
class Page;
-class RenderBox;
+class LayoutBox;
class LayoutEmbeddedObject;
class LayoutObject;
class LayoutScrollbarPart;
@@ -281,7 +281,7 @@ public:
virtual bool shouldSuspendScrollAnimations() const override;
virtual void scrollbarStyleChanged() override;
- RenderBox* embeddedContentBox() const;
+ LayoutBox* embeddedContentBox() const;
void setTracksPaintInvalidations(bool);
bool isTrackingPaintInvalidations() const { return m_isTrackingPaintInvalidations; }
@@ -301,9 +301,9 @@ public:
// With CSS style "resize:" enabled, a little resizer handle will appear at the bottom
// right of the object. We keep track of these resizer areas for checking if touches
// (implemented using Scroll gesture) are targeting the resizer.
- typedef HashSet<RenderBox*> ResizerAreaSet;
- void addResizerArea(RenderBox&);
- void removeResizerArea(RenderBox&);
+ typedef HashSet<LayoutBox*> ResizerAreaSet;
+ void addResizerArea(LayoutBox&);
+ void removeResizerArea(LayoutBox&);
const ResizerAreaSet* resizerAreas() const { return m_resizerAreas.get(); }
// This function exists for ports that need to handle wheel events manually.
« no previous file with comments | « Source/core/editing/iterators/TextIterator.cpp ('k') | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698