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

Unified Diff: Source/web/WebPagePopupImpl.cpp

Issue 1167653007: Cleanup: Rename ChromeClient::setWindowRect and setWindowRectInternal. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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/web/ChromeClientImpl.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebPagePopupImpl.cpp
diff --git a/Source/web/WebPagePopupImpl.cpp b/Source/web/WebPagePopupImpl.cpp
index c7e7d6411544a37ed2f03197436c558ec7d1bb8e..628973faca354e2e6e48482cb4bd0208be3960d8 100644
--- a/Source/web/WebPagePopupImpl.cpp
+++ b/Source/web/WebPagePopupImpl.cpp
@@ -76,7 +76,7 @@ public:
ASSERT(m_popup->widgetClient());
}
- virtual void setWindowRectInternal(const IntRect& rect) override
+ virtual void setWindowRect(const IntRect& rect) override
{
m_popup->m_windowRectInScreen = rect;
m_popup->widgetClient()->setWindowRect(m_popup->m_windowRectInScreen);
@@ -300,7 +300,7 @@ AXObject* WebPagePopupImpl::rootAXObject()
void WebPagePopupImpl::setWindowRect(const IntRect& rect)
{
- m_chromeClient->setWindowRectInternal(rect);
+ m_chromeClient->setWindowRect(rect);
}
void WebPagePopupImpl::setRootGraphicsLayer(GraphicsLayer* layer)
« no previous file with comments | « Source/web/ChromeClientImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698