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

Unified Diff: Source/web/WebDOMError.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/WebDOMCustomEvent.cpp ('k') | Source/web/WebDOMEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDOMError.cpp
diff --git a/Source/web/WebDOMError.cpp b/Source/web/WebDOMError.cpp
index e650489947cac61fb3b86f78676a1d463365175b..f0700d0a4751ec4283b49d8f8f8b2261456eaf92 100644
--- a/Source/web/WebDOMError.cpp
+++ b/Source/web/WebDOMError.cpp
@@ -36,7 +36,7 @@
#include "core/dom/DOMError.h"
#include "wtf/PassOwnPtr.h"
-using namespace WebCore;
+using namespace blink;
namespace blink {
@@ -76,12 +76,12 @@ v8::Handle<v8::Value> WebDOMError::toV8Value(v8::Handle<v8::Object> creationCon
return toV8(m_private.get(), creationContext, isolate);
}
-WebDOMError::WebDOMError(const PassRefPtrWillBeRawPtr<WebCore::DOMError>& error)
+WebDOMError::WebDOMError(const PassRefPtrWillBeRawPtr<blink::DOMError>& error)
: m_private(error)
{
}
-WebDOMError& WebDOMError::operator=(const PassRefPtrWillBeRawPtr<WebCore::DOMError>& error)
+WebDOMError& WebDOMError::operator=(const PassRefPtrWillBeRawPtr<blink::DOMError>& error)
{
m_private = error;
return *this;
« no previous file with comments | « Source/web/WebDOMCustomEvent.cpp ('k') | Source/web/WebDOMEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698