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

Unified Diff: Source/web/WebElement.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/web/WebDocument.cpp ('k') | Source/web/WebFrameImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebElement.cpp
diff --git a/Source/web/WebElement.cpp b/Source/web/WebElement.cpp
index 7497946ecb6e3fb00ae09193f05bdc10ac4e5f73..1fac295b3eadad7cf3a5516c2f668103163fb15f 100644
--- a/Source/web/WebElement.cpp
+++ b/Source/web/WebElement.cpp
@@ -101,9 +101,9 @@ bool WebElement::setAttribute(const WebString& attrName, const WebString& attrVa
// TODO: Custom element callbacks need to be called on WebKit API methods that
// mutate the DOM in any way.
CustomElementCallbackDispatcher::CallbackDeliveryScope deliverCustomElementCallbacks;
- TrackExceptionState es;
- unwrap<Element>()->setAttribute(attrName, attrValue, es);
- return !es.hadException();
+ TrackExceptionState exceptionState;
+ unwrap<Element>()->setAttribute(attrName, attrValue, exceptionState);
+ return !exceptionState.hadException();
}
unsigned WebElement::attributeCount() const
« no previous file with comments | « Source/web/WebDocument.cpp ('k') | Source/web/WebFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698