Index: Source/bindings/core/v8/custom/V8TypedArrayCustom.h |
diff --git a/Source/bindings/core/v8/custom/V8TypedArrayCustom.h b/Source/bindings/core/v8/custom/V8TypedArrayCustom.h |
index c2868b6b578e176c945ee7251e9dff1b32554460..e350629398d3a82fc2922ae2c44500a746bcae72 100644 |
--- a/Source/bindings/core/v8/custom/V8TypedArrayCustom.h |
+++ b/Source/bindings/core/v8/custom/V8TypedArrayCustom.h |
@@ -38,7 +38,7 @@ |
#include "wtf/ArrayBuffer.h" |
#include <v8.h> |
-namespace WebCore { |
+namespace blink { |
template<typename T> |
class TypedArrayTraits |
@@ -141,7 +141,7 @@ v8::Handle<v8::Object> V8TypedArray<TypedArray>::createWrapper(PassRefPtr<TypedA |
ASSERT(!DOMDataStore::containsWrapper<Binding>(impl.get(), isolate)); |
RefPtr<ArrayBuffer> buffer = impl->buffer(); |
- v8::Local<v8::Value> v8Buffer = WebCore::toV8(buffer.get(), creationContext, isolate); |
+ v8::Local<v8::Value> v8Buffer = blink::toV8(buffer.get(), creationContext, isolate); |
ASSERT(v8Buffer->IsArrayBuffer()); |