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

Unified Diff: Source/platform/LengthOrNumber.h

Issue 55813002: Convert animation and renderer code to know about BorderImageLength (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@length-relative-die-step-1-4
Patch Set: Created 7 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: Source/platform/LengthOrNumber.h
diff --git a/Source/platform/LengthOrNumber.h b/Source/platform/LengthOrNumber.h
index 2d9b378aba79279bb3ad447a62263f94958f6a45..c27925e80b6dfd16091713077e636c546e3d4160 100644
--- a/Source/platform/LengthOrNumber.h
+++ b/Source/platform/LengthOrNumber.h
@@ -48,8 +48,6 @@ public:
double number() const { ASSERT(isNumber()); return m_length.value(); }
- Length unifiedLength() const { return m_length; }
-
bool operator==(const LengthOrNumber& o) const
{
return m_length == o.m_length;

Powered by Google App Engine
This is Rietveld 408576698