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

Unified Diff: Source/web/WebNode.cpp

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/WebNetworkStateNotifier.cpp ('k') | Source/web/WebNodeList.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 bee050fc9635f12d1f16ba9e73e5d08693ed6746..9c6317743d5cbc8b1b55c8fc66c593fa46019d81 100644
--- a/Source/web/WebNode.cpp
+++ b/Source/web/WebNode.cpp
@@ -58,7 +58,7 @@
#include "web/WebLocalFrameImpl.h"
#include "web/WebPluginContainerImpl.h"
-using namespace WebCore;
+using namespace blink;
namespace blink {
@@ -139,7 +139,7 @@ WebNodeList WebNode::childNodes()
WebString WebNode::createMarkup() const
{
- return WebCore::createMarkup(m_private.get());
+ return blink::createMarkup(m_private.get());
}
bool WebNode::isLink() const
@@ -242,7 +242,7 @@ WebPluginContainer* WebNode::pluginContainer() const
if (isHTMLObjectElement(coreNode) || isHTMLEmbedElement(coreNode)) {
RenderObject* object = coreNode.renderer();
if (object && object->isWidget()) {
- Widget* widget = WebCore::toRenderWidget(object)->widget();
+ Widget* widget = blink::toRenderWidget(object)->widget();
if (widget && widget->isPluginContainer())
return toWebPluginContainerImpl(widget);
}
« no previous file with comments | « Source/web/WebNetworkStateNotifier.cpp ('k') | Source/web/WebNodeList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698