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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSAngleValue.cpp

Issue 2528263004: Remove unused ExceptionState argument from CSSAngleValue constructor (Closed)
Patch Set: Created 4 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
Index: third_party/WebKit/Source/core/css/cssom/CSSAngleValue.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSAngleValue.cpp b/third_party/WebKit/Source/core/css/cssom/CSSAngleValue.cpp
index fa8dc0376d18b93333cb1901a811697dd90c4928..1d35a17c113f615aabba54680412d40dd6418061 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSAngleValue.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/CSSAngleValue.cpp
@@ -10,9 +10,7 @@
namespace blink {
-CSSAngleValue* CSSAngleValue::create(double value,
- const String& unit,
- ExceptionState& exceptionState) {
+CSSAngleValue* CSSAngleValue::create(double value, const String& unit) {
CSSPrimitiveValue::UnitType primitiveUnit =
CSSPrimitiveValue::stringToUnitType(unit);
DCHECK(CSSPrimitiveValue::isAngle(primitiveUnit));
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSAngleValue.h ('k') | third_party/WebKit/Source/core/css/cssom/CSSAngleValue.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698