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

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

Issue 2733113002: Rename updateWidgetGeometry methods to updateGeometry. (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 778f2a3f3df0ff190ffb7aa35031e8fe2cbdfd05..83762f7e8b89a1009ad6c216e975655ba9e14351 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.h
+++ b/third_party/WebKit/Source/core/frame/FrameView.h
@@ -157,9 +157,7 @@ class CORE_EXPORT FrameView final
bool checkDoesNotNeedLayout() const;
void setNeedsLayout();
- void setNeedsUpdateWidgetGeometries() {
- m_needsUpdateWidgetGeometries = true;
- }
+ void setNeedsUpdateGeometries() { m_needsUpdateGeometries = true; }
// Methods for getting/setting the size Blink should use to layout the
// contents.
@@ -269,7 +267,7 @@ class CORE_EXPORT FrameView final
void addPart(LayoutPart*);
void removePart(LayoutPart*);
- void updateWidgetGeometries();
+ void updateGeometries();
void addPartToUpdate(LayoutEmbeddedObject&);
@@ -963,7 +961,7 @@ class CORE_EXPORT FrameView final
void didChangeGlobalRootScroller() override;
- void updateWidgetGeometriesIfNeeded();
+ void updateGeometriesIfNeeded();
bool wasViewportResized();
void sendResizeEventIfNeeded();
@@ -1119,7 +1117,7 @@ class CORE_EXPORT FrameView final
Vector<IntRect> m_tickmarks;
- bool m_needsUpdateWidgetGeometries;
+ bool m_needsUpdateGeometries;
#if DCHECK_IS_ON()
// Verified when finalizing.
« 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