Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(630)

Unified Diff: Source/core/dom/Clipboard.cpp

Issue 72363002: Rename es => exceptionState in other than bindings/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Retry Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/CharacterData.cpp ('k') | Source/core/dom/ContainerNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « Source/core/dom/CharacterData.cpp ('k') | Source/core/dom/ContainerNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698