| Index: device/generic_sensor/public/cpp/platform_sensor_configuration.cc
|
| diff --git a/device/generic_sensor/public/cpp/platform_sensor_configuration.cc b/device/generic_sensor/public/cpp/platform_sensor_configuration.cc
|
| index f9def58539f97ad02c5db53505db61dce2536e82..4061ad0681193d26fd7eebc28d8ec7f445b7fdc8 100644
|
| --- a/device/generic_sensor/public/cpp/platform_sensor_configuration.cc
|
| +++ b/device/generic_sensor/public/cpp/platform_sensor_configuration.cc
|
| @@ -19,4 +19,9 @@ bool PlatformSensorConfiguration::operator==(
|
| return frequency_ == other.frequency();
|
| }
|
|
|
| +bool PlatformSensorConfiguration::operator>(
|
| + const PlatformSensorConfiguration& other) const {
|
| + return frequency() > other.frequency();
|
| +}
|
| +
|
| } // namespace device
|
|
|