| Index: Source/core/platform/chromium/ChromiumDataObject.cpp
|
| diff --git a/Source/core/platform/chromium/ChromiumDataObject.cpp b/Source/core/platform/chromium/ChromiumDataObject.cpp
|
| index ead88d8bcc6d521f769a4ed776da755913740ac2..feb58e88fba51827360cf75f89c3ab89f0438868 100644
|
| --- a/Source/core/platform/chromium/ChromiumDataObject.cpp
|
| +++ b/Source/core/platform/chromium/ChromiumDataObject.cpp
|
| @@ -96,11 +96,11 @@ void ChromiumDataObject::clearAll()
|
| m_itemList.clear();
|
| }
|
|
|
| -PassRefPtr<ChromiumDataObjectItem> ChromiumDataObject::add(const String& data, const String& type, ExceptionState& es)
|
| +PassRefPtr<ChromiumDataObjectItem> ChromiumDataObject::add(const String& data, const String& type, ExceptionState& exceptionState)
|
| {
|
| RefPtr<ChromiumDataObjectItem> item = ChromiumDataObjectItem::createFromString(type, data);
|
| if (!internalAddStringItem(item)) {
|
| - es.throwDOMException(NotSupportedError, ExceptionMessages::failedToExecute("add", "DataTransferItemList"));
|
| + exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::failedToExecute("add", "DataTransferItemList"));
|
| return 0;
|
| }
|
| return item;
|
|
|