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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp

Issue 2566823002: Remove deprecated ExceptionState constructors. (Closed)
Patch Set: Created 4 years 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
Index: third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
index 1fd917aaa8867a6ba082cf7709394e3f31c0453c..14e7e7f19c28f4955da69404870270fd31f6c848 100644
--- a/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8CSSStyleDeclarationCustom.cpp
@@ -226,9 +226,8 @@ void V8CSSStyleDeclaration::namedPropertySetterCustom(
TOSTRING_VOID(V8StringResource<TreatNullAsNullString>, propertyValue, value);
ExceptionState exceptionState(
- ExceptionState::SetterContext,
- getPropertyName(resolveCSSPropertyID(unresolvedProperty)),
- "CSSStyleDeclaration", info.Holder(), info.GetIsolate());
+ info.GetIsolate(), ExceptionState::SetterContext, "CSSStyleDeclaration",
+ getPropertyName(resolveCSSPropertyID(unresolvedProperty)));
impl->setPropertyInternal(unresolvedProperty, String(), propertyValue, false,
exceptionState);

Powered by Google App Engine
This is Rietveld 408576698