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

Unified Diff: Source/core/dom/ContainerNode.cpp

Issue 289163003: Fix build with gcc 4.8 and C++11 support enabled (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | « no previous file | Source/core/html/HTMLFormControlElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ContainerNode.cpp
diff --git a/Source/core/dom/ContainerNode.cpp b/Source/core/dom/ContainerNode.cpp
index 6ca8c750dcb71d8149f0f75a96f779280d900b39..2272ba87e3ba3daaff3fa8366fefa4986d07694f 100644
--- a/Source/core/dom/ContainerNode.cpp
+++ b/Source/core/dom/ContainerNode.cpp
@@ -839,7 +839,7 @@ void ContainerNode::focusStateChanged()
}
if (renderer() && renderer()->style()->hasAppearance())
- RenderTheme::theme().stateChanged(renderer(), FocusState);
+ RenderTheme::theme().stateChanged(renderer(), FocusControlState);
}
void ContainerNode::setFocus(bool received)
@@ -880,7 +880,7 @@ void ContainerNode::setActive(bool down)
}
if (renderStyle()->hasAppearance())
- RenderTheme::theme().stateChanged(renderer(), PressedState);
+ RenderTheme::theme().stateChanged(renderer(), PressedControlState);
}
}
@@ -912,7 +912,7 @@ void ContainerNode::setHovered(bool over)
}
if (renderer()->style()->hasAppearance())
- RenderTheme::theme().stateChanged(renderer(), HoverState);
+ RenderTheme::theme().stateChanged(renderer(), HoverControlState);
}
PassRefPtr<HTMLCollection> ContainerNode::children()
« no previous file with comments | « no previous file | Source/core/html/HTMLFormControlElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698