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

Unified Diff: Source/core/html/HTMLInputElement.cpp

Issue 1033943002: Rename LayoutStyle to papayawhip (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ensureComputedStyle Created 5 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 | « Source/core/html/HTMLInputElement.h ('k') | Source/core/html/HTMLKeygenElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLInputElement.cpp
diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp
index 439a5ca2c547038a421a5f07a3f4a85f2a19c797..1001f491c19652fde8f0509c9e28a66afbc1fdab 100644
--- a/Source/core/html/HTMLInputElement.cpp
+++ b/Source/core/html/HTMLInputElement.cpp
@@ -815,12 +815,12 @@ void HTMLInputElement::finishParsingChildren()
}
}
-bool HTMLInputElement::layoutObjectIsNeeded(const LayoutStyle& style)
+bool HTMLInputElement::layoutObjectIsNeeded(const ComputedStyle& style)
{
return m_inputType->layoutObjectIsNeeded() && HTMLTextFormControlElement::layoutObjectIsNeeded(style);
}
-LayoutObject* HTMLInputElement::createLayoutObject(const LayoutStyle& style)
+LayoutObject* HTMLInputElement::createLayoutObject(const ComputedStyle& style)
{
return m_inputTypeView->createLayoutObject(style);
}
@@ -1895,7 +1895,7 @@ bool HTMLInputElement::supportsAutofocus() const
return m_inputType->isInteractiveContent();
}
-PassRefPtr<LayoutStyle> HTMLInputElement::customStyleForLayoutObject()
+PassRefPtr<ComputedStyle> HTMLInputElement::customStyleForLayoutObject()
{
return m_inputTypeView->customStyleForLayoutObject(originalStyleForLayoutObject());
}
« no previous file with comments | « Source/core/html/HTMLInputElement.h ('k') | Source/core/html/HTMLKeygenElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698