| Index: Source/WebCore/bindings/dart/custom/DartIDBKeyCustom.cpp
|
| diff --git a/Source/WebCore/bindings/dart/custom/DartIDBKeyCustom.cpp b/Source/WebCore/bindings/dart/custom/DartIDBKeyCustom.cpp
|
| index 78b183764ee3e6b3e1618ef0fef2920f9be40e96..370a770222f16af734463d08766e06ac892f3ed5 100644
|
| --- a/Source/WebCore/bindings/dart/custom/DartIDBKeyCustom.cpp
|
| +++ b/Source/WebCore/bindings/dart/custom/DartIDBKeyCustom.cpp
|
| @@ -45,10 +45,10 @@ PassRefPtr<IDBKey> DartIDBKey::toNative(Dart_Handle handle, Dart_Handle& excepti
|
| }
|
|
|
| if (Dart_IsString(handle)) {
|
| - RefPtr<StringImpl> asStringImpl = DartUtilities::toStringImpl(handle, DartUtilities::ConvertNone, exception);
|
| + DartStringAdapter asString = DartUtilities::dartToString(handle, exception);
|
| if (exception)
|
| return 0;
|
| - return IDBKey::createString(asStringImpl);
|
| + return IDBKey::createString(asString);
|
| }
|
|
|
| // FIXME: Support Date case.
|
|
|