| Index: device/sensors/platform_sensor_configuration.cc
 | 
| diff --git a/device/sensors/platform_sensor_configuration.cc b/device/sensors/platform_sensor_configuration.cc
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..1bf1339dd70a65ed4cb1173611db91389c16d8d8
 | 
| --- /dev/null
 | 
| +++ b/device/sensors/platform_sensor_configuration.cc
 | 
| @@ -0,0 +1,20 @@
 | 
| +// Copyright 2016 The Chromium Authors. All rights reserved.
 | 
| +// Use of this source code is governed by a BSD-style license that can be
 | 
| +// found in the LICENSE file.
 | 
| +
 | 
| +#include "device/sensors/platform_sensor_configuration.h"
 | 
| +
 | 
| +namespace device {
 | 
| +
 | 
| +PlatformSensorConfiguration::PlatformSensorConfiguration(double frequency)
 | 
| +    : frequency_(frequency) {}
 | 
| +
 | 
| +PlatformSensorConfiguration::PlatformSensorConfiguration() = default;
 | 
| +PlatformSensorConfiguration::~PlatformSensorConfiguration() = default;
 | 
| +
 | 
| +bool PlatformSensorConfiguration::operator==(
 | 
| +    const PlatformSensorConfiguration& other) const {
 | 
| +  return frequency_ == other.frequency();
 | 
| +}
 | 
| +
 | 
| +}  // namespace device
 | 
| 
 |