| Index: Source/core/dom/Clipboard.cpp
|
| diff --git a/Source/core/dom/Clipboard.cpp b/Source/core/dom/Clipboard.cpp
|
| index 3178aac7a6728305b9d4716ca1370f1c1f209176..fc3808ee74f008f52bae81a4725cb41649a655ff 100644
|
| --- a/Source/core/dom/Clipboard.cpp
|
| +++ b/Source/core/dom/Clipboard.cpp
|
| @@ -211,13 +211,13 @@ PassRefPtr<FileList> Clipboard::files() const
|
| return files.release();
|
| }
|
|
|
| -void Clipboard::setDragImage(Element* image, int x, int y, ExceptionState& es)
|
| +void Clipboard::setDragImage(Element* image, int x, int y, ExceptionState& exceptionState)
|
| {
|
| if (!isForDragAndDrop())
|
| return;
|
|
|
| if (!image) {
|
| - es.throwTypeError("setDragImage: Invalid first argument");
|
| + exceptionState.throwTypeError("setDragImage: Invalid first argument");
|
| return;
|
| }
|
| IntPoint location(x, y);
|
|
|