| Index: Source/core/platform/chromium/ChromiumDataObjectItem.cpp
|
| diff --git a/Source/core/platform/chromium/ChromiumDataObjectItem.cpp b/Source/core/platform/chromium/ChromiumDataObjectItem.cpp
|
| index 321226c1c33057a3af58bf592d1317fb26ab9c1b..3527a40d42cbf93daf439d6fc07e65c4c25f9463 100644
|
| --- a/Source/core/platform/chromium/ChromiumDataObjectItem.cpp
|
| +++ b/Source/core/platform/chromium/ChromiumDataObjectItem.cpp
|
| @@ -104,12 +104,12 @@ ChromiumDataObjectItem::ChromiumDataObjectItem(const String& kind, const String&
|
| {
|
| }
|
|
|
| -void ChromiumDataObjectItem::getAsString(PassRefPtr<StringCallback> callback, ExecutionContext* context) const
|
| +void ChromiumDataObjectItem::getAsString(PassOwnPtr<StringCallback> callback, ExecutionContext* context) const
|
| {
|
| if (!callback || kind() != DataTransferItem::kindString)
|
| return;
|
|
|
| - callback->scheduleCallback(context, internalGetAsString());
|
| + StringCallback::scheduleCallback(callback, context, internalGetAsString());
|
| }
|
|
|
| PassRefPtr<Blob> ChromiumDataObjectItem::getAsFile() const
|
|
|