diff --git a/api/test/frame_generator_interface.h b/api/test/frame_generator_interface.h index 84aa1dcafb..d82ba55bdd 100644 --- a/api/test/frame_generator_interface.h +++ b/api/test/frame_generator_interface.h @@ -48,10 +48,7 @@ class FrameGeneratorInterface { // Change the capture resolution. virtual void ChangeResolution(size_t width, size_t height) = 0; - virtual Resolution GetResolution() const { - // TODO(mbonadei): Remove and make it pure virtual. - return {.width = 0, .height = 0}; - } + virtual Resolution GetResolution() const = 0; }; } // namespace test