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

Unified Diff: Source/web/AutofillPopupMenuClient.cpp

Issue 23819007: Have Node::document() return a reference instead of a pointer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 7 years, 4 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/xml/parser/XMLDocumentParser.cpp ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/AutofillPopupMenuClient.cpp
diff --git a/Source/web/AutofillPopupMenuClient.cpp b/Source/web/AutofillPopupMenuClient.cpp
index 98fff514c575f39dee7d6b2f95d7b1550c2996cb..8788c1a56ad30b07cd92fcd1bf278bf9b3b28a6f 100644
--- a/Source/web/AutofillPopupMenuClient.cpp
+++ b/Source/web/AutofillPopupMenuClient.cpp
@@ -226,12 +226,12 @@ void AutofillPopupMenuClient::setTextFromItem(unsigned listIndex)
FontSelector* AutofillPopupMenuClient::fontSelector() const
{
- return m_textField->document()->styleResolver()->fontSelector();
+ return m_textField->document().styleResolver()->fontSelector();
}
HostWindow* AutofillPopupMenuClient::hostWindow() const
{
- return m_textField->document()->view()->hostWindow();
+ return m_textField->document().view()->hostWindow();
}
PassRefPtr<Scrollbar> AutofillPopupMenuClient::createScrollbar(
@@ -285,7 +285,7 @@ void AutofillPopupMenuClient::initialize(
regularFontDescription.setComputedSize(style->fontDescription().computedSize());
Font regularFont(regularFontDescription, 0, 0);
- regularFont.update(textField->document()->styleResolver()->fontSelector());
+ regularFont.update(textField->document().styleResolver()->fontSelector());
// The direction of text in popup menu is set the same as the direction of
// the input element: textField.
m_regularStyle = adoptPtr(new PopupMenuStyle(Color::black, Color::white, regularFont, true, false,
@@ -331,7 +331,7 @@ void AutofillPopupMenuClient::setSuggestions(const WebVector<WebString>& names,
WebViewImpl* AutofillPopupMenuClient::getWebView() const
{
- return WebViewImpl::fromPage(m_textField->document()->page());
+ return WebViewImpl::fromPage(m_textField->document().page());
}
RenderStyle* AutofillPopupMenuClient::textFieldStyle() const
« no previous file with comments | « Source/core/xml/parser/XMLDocumentParser.cpp ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698