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:
Samuel Tan 2015-09-15 11:40:47 -07:00
parent 88880fd8a9
commit 1c4d8f10da
5 changed files with 5 additions and 4 deletions

View File

@ -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

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
#include "timer.h"
#include "metrics/timer.h"
#include <string>

View File

@ -21,7 +21,7 @@
#include <gmock/gmock.h>
#include "timer.h"
#include "metrics/timer.h"
namespace chromeos_metrics {

View File

@ -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::_;