| Index: components/gcm_driver/gcm_stats_recorder_impl_unittest.cc
|
| diff --git a/components/gcm_driver/gcm_stats_recorder_impl_unittest.cc b/components/gcm_driver/gcm_stats_recorder_impl_unittest.cc
|
| index bb8ea313c62ab0fe8d28db61365b2f793aab9186..7dafbaa96aec4809ef4d05ad874d2721a3a333c7 100644
|
| --- a/components/gcm_driver/gcm_stats_recorder_impl_unittest.cc
|
| +++ b/components/gcm_driver/gcm_stats_recorder_impl_unittest.cc
|
| @@ -350,7 +350,7 @@ GCMStatsRecorderImplTest::~GCMStatsRecorderImplTest() {}
|
|
|
| void GCMStatsRecorderImplTest::SetUp(){
|
| source_ = "s1,s2";
|
| - recorder_.SetRecording(true);
|
| + recorder_.set_is_recording(true);
|
| }
|
|
|
| TEST_F(GCMStatsRecorderImplTest, StartStopRecordingTest) {
|
| @@ -359,7 +359,7 @@ TEST_F(GCMStatsRecorderImplTest, StartStopRecordingTest) {
|
| VerifyRecordedSendingCount(1);
|
| VerifyDataSentToWire("1st call");
|
|
|
| - recorder_.SetRecording(false);
|
| + recorder_.set_is_recording(false);
|
| EXPECT_FALSE(recorder_.is_recording());
|
| recorder_.Clear();
|
| VerifyAllActivityQueueEmpty("all cleared");
|
|
|