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

Unified Diff: Source/core/html/forms/TextFieldInputType.cpp

Issue 926193003: Move rendering/RenderBox to layout/LayoutBox. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/forms/ImageInputType.cpp ('k') | Source/core/html/shadow/SliderThumbElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/TextFieldInputType.cpp
diff --git a/Source/core/html/forms/TextFieldInputType.cpp b/Source/core/html/forms/TextFieldInputType.cpp
index 29e2e6343d73d61f87cb787a2a3652bc5a6c0114..9a0d60755aa9946bdce830107045ebafcad6a434 100644
--- a/Source/core/html/forms/TextFieldInputType.cpp
+++ b/Source/core/html/forms/TextFieldInputType.cpp
@@ -230,7 +230,7 @@ void TextFieldInputType::forwardEvent(Event* event)
if (element().renderer() && (event->isMouseEvent() || event->isDragEvent() || event->hasInterface(EventNames::WheelEvent) || event->type() == EventTypeNames::blur || event->type() == EventTypeNames::focus)) {
LayoutTextControlSingleLine* renderTextControl = toLayoutTextControlSingleLine(element().renderer());
if (event->type() == EventTypeNames::blur) {
- if (RenderBox* innerEditorRenderer = element().innerEditorElement()->renderBox()) {
+ if (LayoutBox* innerEditorRenderer = element().innerEditorElement()->layoutBox()) {
// FIXME: This class has no need to know about Layer!
if (Layer* innerLayer = innerEditorRenderer->layer()) {
if (LayerScrollableArea* innerScrollableArea = innerLayer->scrollableArea()) {
« no previous file with comments | « Source/core/html/forms/ImageInputType.cpp ('k') | Source/core/html/shadow/SliderThumbElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698