| Index: Source/bindings/core/v8/ArrayValue.cpp
|
| diff --git a/Source/bindings/core/v8/ArrayValue.cpp b/Source/bindings/core/v8/ArrayValue.cpp
|
| index ef19c8d2a3ac5ab5ff1c9c6e4556d2c1662967e7..424d500422e74b3a4a7ae9219d58925b2aef5e1f 100644
|
| --- a/Source/bindings/core/v8/ArrayValue.cpp
|
| +++ b/Source/bindings/core/v8/ArrayValue.cpp
|
| @@ -29,7 +29,7 @@
|
| #include "bindings/core/v8/Dictionary.h"
|
| #include "bindings/core/v8/V8Binding.h"
|
|
|
| -namespace WebCore {
|
| +namespace blink {
|
|
|
| ArrayValue& ArrayValue::operator=(const ArrayValue& other)
|
| {
|
| @@ -40,7 +40,7 @@ ArrayValue& ArrayValue::operator=(const ArrayValue& other)
|
|
|
| bool ArrayValue::isUndefinedOrNull() const
|
| {
|
| - return m_array.IsEmpty() || WebCore::isUndefinedOrNull(m_array);
|
| + return m_array.IsEmpty() || blink::isUndefinedOrNull(m_array);
|
| }
|
|
|
| bool ArrayValue::length(size_t& length) const
|
| @@ -70,4 +70,4 @@ bool ArrayValue::get(size_t index, Dictionary& value) const
|
| return true;
|
| }
|
|
|
| -} // namespace WebCore
|
| +} // namespace blink
|
|
|