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

Unified Diff: Source/core/platform/animation/TimingFunction.h

Issue 60323005: Adding operator== to TimingFunctionTestHelper. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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/core/platform/animation/TimingFunction.h
diff --git a/Source/core/platform/animation/TimingFunction.h b/Source/core/platform/animation/TimingFunction.h
index 3394fffe9662c672d1c7ac6b5abf24c77401c332..eb94f3b4ef4cb1e61cca08d1456938b7ebff4579 100644
--- a/Source/core/platform/animation/TimingFunction.h
+++ b/Source/core/platform/animation/TimingFunction.h
@@ -88,7 +88,7 @@ private:
// Forward declare so we can friend it below. Don't use in production code!
-class ChainedTimingFunctionPrinter;
+class ChainedTimingFunctionTestHelper;
class CubicBezierTimingFunction : public TimingFunction {
public:
@@ -281,9 +281,9 @@ private:
double m_max;
RefPtr<TimingFunction> m_timingFunction;
- // Allow printing of our segments. Can be removed once
+ // Allow PrintTo/operator== of the segments. Can be removed once
// ChainedTimingFunction has a public API for segments.
- friend class ChainedTimingFunctionPrinter;
+ friend class ChainedTimingFunctionTestHelper;
};
ChainedTimingFunction()
@@ -294,9 +294,9 @@ private:
Vector<Segment> m_segments;
- // Allow printing of our segments. Can be removed once
+ // Allow PrintTo/operator== of the segments. Can be removed once
// ChainedTimingFunction has a public API for segments.
- friend class ChainedTimingFunctionPrinter;
+ friend class ChainedTimingFunctionTestHelper;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698