metricsd: move timer.h into include/metrics/
Move timer.h into the include/metrics/ folder since some source files in shill need to include this header file. Adjust the timer.h include paths in the metricsd accordingly. BUG: None Change-Id: Id2f5e079d3a095f40d0f4d4e0d438bd22f1274ff TEST: "mma" in metricsd folder succeeds.
This commit is contained in:
parent
88880fd8a9
commit
1c4d8f10da
|
@ -23,7 +23,8 @@ libmetrics_sources := \
|
|||
c_metrics_library.cc \
|
||||
metrics_library.cc \
|
||||
serialization/metric_sample.cc \
|
||||
serialization/serialization_utils.cc
|
||||
serialization/serialization_utils.cc \
|
||||
timer.cc
|
||||
|
||||
metrics_client_sources := \
|
||||
metrics_client.cc
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "timer.h"
|
||||
#include "metrics/timer.h"
|
||||
|
||||
#include <string>
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
#include <gmock/gmock.h>
|
||||
|
||||
#include "timer.h"
|
||||
#include "metrics/timer.h"
|
||||
|
||||
namespace chromeos_metrics {
|
||||
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
#include <gmock/gmock.h>
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
#include "metrics/timer.h"
|
||||
#include "metrics_library_mock.h"
|
||||
#include "timer.h"
|
||||
#include "timer_mock.h"
|
||||
|
||||
using ::testing::_;
|
||||
|
|
Loading…
Reference in New Issue