| Index: Source/web/WebBindings.cpp
|
| diff --git a/Source/web/WebBindings.cpp b/Source/web/WebBindings.cpp
|
| index 75b047f70aebf2425a862da89958291c40e7b0e9..6fcb3abe688162434bd9f954854325097348cc69 100644
|
| --- a/Source/web/WebBindings.cpp
|
| +++ b/Source/web/WebBindings.cpp
|
| @@ -51,8 +51,6 @@
|
| #include "public/web/WebRange.h"
|
| #include "wtf/ArrayBufferView.h"
|
|
|
| -using namespace blink;
|
| -
|
| namespace blink {
|
|
|
| bool WebBindings::construct(NPP npp, NPObject* object, const NPVariant* args, uint32_t argCount, NPVariant* result)
|
| @@ -185,7 +183,7 @@ void WebBindings::unregisterObject(NPObject* object)
|
|
|
| void WebBindings::dropV8WrapperForObject(NPObject* object)
|
| {
|
| - blink::forgetV8ObjectForNPObject(object);
|
| + forgetV8ObjectForNPObject(object);
|
| }
|
|
|
| NPUTF8* WebBindings::utf8FromIdentifier(NPIdentifier identifier)
|
| @@ -386,7 +384,7 @@ void WebBindings::popExceptionHandler()
|
|
|
| void WebBindings::toNPVariant(v8::Local<v8::Value> object, NPObject* root, NPVariant* result)
|
| {
|
| - blink::convertV8ObjectToNPVariant(object, root, result, v8::Isolate::GetCurrent());
|
| + convertV8ObjectToNPVariant(object, root, result, v8::Isolate::GetCurrent());
|
| }
|
|
|
| v8::Handle<v8::Value> WebBindings::toV8Value(const NPVariant* variant)
|
|
|