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

Unified Diff: Source/web/WebNode.cpp

Issue 545123002: Cleanup namespace usage in Source/web/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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/WebAXObject.cpp ('k') | Source/web/WebPageSerializer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebNode.cpp
diff --git a/Source/web/WebNode.cpp b/Source/web/WebNode.cpp
index 60adc3cf9f7b19c30978b58d0d56f0faa952ce9e..d65a85b9b84d4ae803ebd72a211a7b2534c1fdc8 100644
--- a/Source/web/WebNode.cpp
+++ b/Source/web/WebNode.cpp
@@ -231,7 +231,7 @@ WebPluginContainer* WebNode::pluginContainer() const
if (isHTMLObjectElement(coreNode) || isHTMLEmbedElement(coreNode)) {
RenderObject* object = coreNode.renderer();
if (object && object->isWidget()) {
- Widget* widget = blink::toRenderWidget(object)->widget();
+ Widget* widget = toRenderWidget(object)->widget();
if (widget && widget->isPluginContainer())
return toWebPluginContainerImpl(widget);
}
« no previous file with comments | « Source/web/WebAXObject.cpp ('k') | Source/web/WebPageSerializer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698