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

Unified Diff: Source/web/WebAXObject.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/ViewportAnchor.cpp ('k') | Source/web/WebArrayBufferView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebAXObject.cpp
diff --git a/Source/web/WebAXObject.cpp b/Source/web/WebAXObject.cpp
index 2eb2a5eafa73f213dc44fdf6c9cbdbe50a0f28cd..af98cf2785129727d38d855ae682ada95fdffadd 100644
--- a/Source/web/WebAXObject.cpp
+++ b/Source/web/WebAXObject.cpp
@@ -55,14 +55,14 @@
using namespace WebCore;
-namespace WebKit {
+namespace blink {
void WebAXObject::reset()
{
m_private.reset();
}
-void WebAXObject::assign(const WebKit::WebAXObject& other)
+void WebAXObject::assign(const blink::WebAXObject& other)
{
m_private = other.m_private;
}
@@ -608,7 +608,7 @@ bool WebAXObject::press() const
WebAXRole WebAXObject::role() const
{
if (isDetached())
- return WebKit::WebAXRoleUnknown;
+ return blink::WebAXRoleUnknown;
return static_cast<WebAXRole>(m_private->roleValue());
}
@@ -1073,4 +1073,4 @@ WebAXObject::operator WTF::PassRefPtr<WebCore::AXObject>() const
return m_private.get();
}
-} // namespace WebKit
+} // namespace blink
« no previous file with comments | « Source/web/ViewportAnchor.cpp ('k') | Source/web/WebArrayBufferView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698