summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/cssom/css_math_product.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/css/cssom/css_math_product.h')
-rw-r--r--chromium/third_party/blink/renderer/core/css/cssom/css_math_product.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/chromium/third_party/blink/renderer/core/css/cssom/css_math_product.h b/chromium/third_party/blink/renderer/core/css/cssom/css_math_product.h
index d709ed83810..94ff7d086c1 100644
--- a/chromium/third_party/blink/renderer/core/css/cssom/css_math_product.h
+++ b/chromium/third_party/blink/renderer/core/css/cssom/css_math_product.h
@@ -5,6 +5,7 @@
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSSOM_CSS_MATH_PRODUCT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSSOM_CSS_MATH_PRODUCT_H_
+#include "third_party/abseil-cpp/absl/types/optional.h"
#include "third_party/blink/renderer/core/css/cssom/css_math_variadic.h"
namespace blink {
@@ -16,13 +17,8 @@ class CORE_EXPORT CSSMathProduct final : public CSSMathVariadic {
public:
// The constructor defined in the IDL.
-#if defined(USE_BLINK_V8_BINDING_NEW_IDL_UNION)
static CSSMathProduct* Create(const HeapVector<Member<V8CSSNumberish>>& args,
ExceptionState& exception_state);
-#else // defined(USE_BLINK_V8_BINDING_NEW_IDL_UNION)
- static CSSMathProduct* Create(const HeapVector<CSSNumberish>& args,
- ExceptionState&);
-#endif // defined(USE_BLINK_V8_BINDING_NEW_IDL_UNION)
// Blink internal-constructor.
static CSSMathProduct* Create(CSSNumericValueVector);