diff --git a/api/test/frame_generator_interface.h b/api/test/frame_generator_interface.h index 287a01eb91..a8a88a8a04 100644 --- a/api/test/frame_generator_interface.h +++ b/api/test/frame_generator_interface.h @@ -53,8 +53,7 @@ class FrameGeneratorInterface { // Returns the frames per second this generator is supposed to provide // according to its data source. Not all frame generators know the frames per // second of the data source, in such case this method returns absl::nullopt. - // TODO(mbonadei): Make this pure virtual. - virtual absl::optional fps() const { return absl::nullopt; } + virtual absl::optional fps() const = 0; }; } // namespace test