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

Unified Diff: Source/core/css/CSSValuePair.cpp

Issue 1317523002: Changed Pair to be a CSSValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@add_const_to_primvalue
Patch Set: Rebase Created 5 years, 4 months 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/core/css/CSSValuePair.h ('k') | Source/core/css/ComputedStyleCSSValueMapping.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSValuePair.cpp
diff --git a/Source/core/css/Pair.cpp b/Source/core/css/CSSValuePair.cpp
similarity index 69%
rename from Source/core/css/Pair.cpp
rename to Source/core/css/CSSValuePair.cpp
index e329c4533195d3de8c65ef20b56f228296f0d65a..e5596bdf62103b2f148c07f9b5d39901680db7b6 100644
--- a/Source/core/css/Pair.cpp
+++ b/Source/core/css/CSSValuePair.cpp
@@ -3,14 +3,15 @@
// found in the LICENSE file.
#include "config.h"
-#include "core/css/Pair.h"
+#include "core/css/CSSValuePair.h"
namespace blink {
-DEFINE_TRACE(Pair)
+DEFINE_TRACE_AFTER_DISPATCH(CSSValuePair)
{
visitor->trace(m_first);
visitor->trace(m_second);
+ CSSValue::traceAfterDispatch(visitor);
}
}
« no previous file with comments | « Source/core/css/CSSValuePair.h ('k') | Source/core/css/ComputedStyleCSSValueMapping.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698