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

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

Issue 2738783003: Rename ChildrenWidgetSet to ChildrenSet (Closed)
Patch Set: Created 3 years, 9 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 | « no previous file | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698