Index: third_party/WebKit/Source/core/css/CSSPendingSubstitutionValue.cpp |
diff --git a/third_party/WebKit/Source/core/css/CSSPendingSubstitutionValue.cpp b/third_party/WebKit/Source/core/css/CSSPendingSubstitutionValue.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..80848d3d2996566504c7d6eaffa7d2b8048d7546 |
--- /dev/null |
+++ b/third_party/WebKit/Source/core/css/CSSPendingSubstitutionValue.cpp |
@@ -0,0 +1,20 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "core/css/CSSPendingSubstitutionValue.h" |
+ |
+namespace blink { |
+ |
+DEFINE_TRACE_AFTER_DISPATCH(CSSPendingSubstitutionValue) |
+{ |
+ CSSValue::traceAfterDispatch(visitor); |
+ visitor->trace(m_shorthandValue); |
+} |
+ |
+String CSSPendingSubstitutionValue::customCSSText() const |
+{ |
+ return ""; |
+} |
+ |
+} // namespace blink |