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

Unified Diff: Source/web/WebBindings.cpp

Issue 468083003: Cleanup namespace usage in Source/web/Web[A-H]*.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebasing Created 6 years, 4 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 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)
« 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