| Index: third_party/WebKit/Source/core/frame/FrameView.h
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameView.h b/third_party/WebKit/Source/core/frame/FrameView.h
|
| index 8972b3d503dff84d4d87bb7bc188f2ba4c3176cf..43e36433b062736fb3c28dc909f7e602b5672b3a 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.h
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.h
|
| @@ -458,13 +458,13 @@ class CORE_EXPORT FrameView final
|
| // and repaints to the host window in the window's coordinate space.
|
| HostWindow* getHostWindow() const;
|
|
|
| - typedef HeapHashSet<Member<FrameViewBase>> ChildrenWidgetSet;
|
| + typedef HeapHashSet<Member<FrameViewBase>> ChildrenSet;
|
|
|
| // Functions for child manipulation and inspection.
|
| void setParent(FrameViewBase*) override;
|
| void removeChild(FrameViewBase*);
|
| void addChild(FrameViewBase*);
|
| - const ChildrenWidgetSet* children() const { return &m_children; }
|
| + const ChildrenSet* children() const { return &m_children; }
|
|
|
| // If the scroll view does not use a native widget, then it will have
|
| // cross-platform Scrollbars. These functions can be used to obtain those
|
| @@ -1130,7 +1130,7 @@ class CORE_EXPORT FrameView final
|
| bool m_horizontalScrollbarLock;
|
| bool m_verticalScrollbarLock;
|
|
|
| - ChildrenWidgetSet m_children;
|
| + ChildrenSet m_children;
|
|
|
| ScrollOffset m_pendingScrollDelta;
|
| ScrollOffset m_scrollOffset;
|
|
|