diff options
Diffstat (limited to 'components')
-rw-r--r-- | components/gcm_driver/gcm_driver_desktop_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/gcm_driver/gcm_driver_desktop_unittest.cc b/components/gcm_driver/gcm_driver_desktop_unittest.cc index f27d018..1424fed 100644 --- a/components/gcm_driver/gcm_driver_desktop_unittest.cc +++ b/components/gcm_driver/gcm_driver_desktop_unittest.cc @@ -1008,8 +1008,8 @@ class GCMChannelStatusSyncerTest : public GCMDriverTest { void SetUp() override; void CompleteGCMChannelStatusRequest(bool enabled, int poll_interval_seconds); - bool CompareDelaySeconds(bool expected_delay_seconds, - bool actual_delay_seconds); + bool CompareDelaySeconds(int64 expected_delay_seconds, + int64 actual_delay_seconds); GCMChannelStatusSyncer* syncer() { return driver()->gcm_channel_status_syncer_for_testing(); @@ -1057,7 +1057,7 @@ void GCMChannelStatusSyncerTest::CompleteGCMChannelStatusRequest( } bool GCMChannelStatusSyncerTest::CompareDelaySeconds( - bool expected_delay_seconds, bool actual_delay_seconds) { + int64 expected_delay_seconds, int64 actual_delay_seconds) { // Most of time, the actual delay should not be smaller than the expected // delay. if (actual_delay_seconds >= expected_delay_seconds) |