| Index: Source/bindings/core/v8/DictionaryHelperForBindings.h
|
| diff --git a/Source/bindings/core/v8/DictionaryHelperForBindings.h b/Source/bindings/core/v8/DictionaryHelperForBindings.h
|
| index 049f6fb70dab3969ea64fd1e83a2af838a1b56ce..1a39d7cff54383e8595d351ecf73d0cd2de23dd2 100644
|
| --- a/Source/bindings/core/v8/DictionaryHelperForBindings.h
|
| +++ b/Source/bindings/core/v8/DictionaryHelperForBindings.h
|
| @@ -28,7 +28,7 @@
|
|
|
| #include "Source/bindings/core/v8/Dictionary.h"
|
|
|
| -namespace WebCore {
|
| +namespace blink {
|
|
|
| template <typename T>
|
| struct DictionaryHelperTraits {
|
| @@ -58,13 +58,13 @@ bool DictionaryHelper::convert(const Dictionary& dictionary, Dictionary::Convers
|
|
|
| v8::Local<v8::Value> v8Value;
|
| dictionary.get(key, v8Value);
|
| - if (context.isNullable() && WebCore::isUndefinedOrNull(v8Value))
|
| + if (context.isNullable() && blink::isUndefinedOrNull(v8Value))
|
| return true;
|
|
|
| context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "does not have a " + context.typeName() + " type."));
|
| return false;
|
| }
|
|
|
| -} // namespace WebCore
|
| +} // namespace blink
|
|
|
| #endif // DictionaryHelperForBindings_h
|
|
|