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

Unified Diff: Source/web/WebBindings.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/WebArrayBufferView.cpp ('k') | Source/web/WebBlob.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebBindings.cpp
diff --git a/Source/web/WebBindings.cpp b/Source/web/WebBindings.cpp
index 6fffb6b54671cf7aa7b56d6f2a049a5a89fccb69..75b047f70aebf2425a862da89958291c40e7b0e9 100644
--- a/Source/web/WebBindings.cpp
+++ b/Source/web/WebBindings.cpp
@@ -51,7 +51,7 @@
#include "public/web/WebRange.h"
#include "wtf/ArrayBufferView.h"
-using namespace WebCore;
+using namespace blink;
namespace blink {
@@ -185,7 +185,7 @@ void WebBindings::unregisterObject(NPObject* object)
void WebBindings::dropV8WrapperForObject(NPObject* object)
{
- WebCore::forgetV8ObjectForNPObject(object);
+ blink::forgetV8ObjectForNPObject(object);
}
NPUTF8* WebBindings::utf8FromIdentifier(NPIdentifier identifier)
@@ -376,17 +376,17 @@ NPObject* WebBindings::makeStringArray(const WebVector<WebString>& data)
void WebBindings::pushExceptionHandler(ExceptionHandler handler, void* data)
{
- WebCore::pushExceptionHandler(handler, data);
+ blink::pushExceptionHandler(handler, data);
}
void WebBindings::popExceptionHandler()
{
- WebCore::popExceptionHandler();
+ blink::popExceptionHandler();
}
void WebBindings::toNPVariant(v8::Local<v8::Value> object, NPObject* root, NPVariant* result)
{
- WebCore::convertV8ObjectToNPVariant(object, root, result, v8::Isolate::GetCurrent());
+ blink::convertV8ObjectToNPVariant(object, root, result, v8::Isolate::GetCurrent());
}
v8::Handle<v8::Value> WebBindings::toV8Value(const NPVariant* variant)
« no previous file with comments | « Source/web/WebArrayBufferView.cpp ('k') | Source/web/WebBlob.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698