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

Unified Diff: sky/engine/core/css/CSSValue.h

Issue 686783002: Remove almost all of Oilpan (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 | « sky/engine/core/css/CSSImageGeneratorValue.cpp ('k') | sky/engine/core/css/FontFace.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/css/CSSValue.h
diff --git a/sky/engine/core/css/CSSValue.h b/sky/engine/core/css/CSSValue.h
index 148ef7250a1cfe3ca2970428b9915f5024fec6ea..b2a42f446b54d45ab26c2247ae452f7ce7014285 100644
--- a/sky/engine/core/css/CSSValue.h
+++ b/sky/engine/core/css/CSSValue.h
@@ -241,12 +241,6 @@ inline bool compareCSSValuePtr(const RawPtr<CSSValueType>& first, const RawPtr<C
return first ? second && first->equals(*second) : !second;
}
-template<typename CSSValueType>
-inline bool compareCSSValuePtr(const Member<CSSValueType>& first, const Member<CSSValueType>& second)
-{
- return first ? second && first->equals(*second) : !second;
-}
-
#define DEFINE_CSS_VALUE_TYPE_CASTS(thisType, predicate) \
DEFINE_TYPE_CASTS(thisType, CSSValue, value, value->predicate, value.predicate)
« no previous file with comments | « sky/engine/core/css/CSSImageGeneratorValue.cpp ('k') | sky/engine/core/css/FontFace.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698