Index: components/gcm_driver/instance_id/instance_id_driver_unittest.cc |
diff --git a/components/gcm_driver/instance_id/instance_id_driver_unittest.cc b/components/gcm_driver/instance_id/instance_id_driver_unittest.cc |
index dbad73a0e524664a83075256180a53b73c139dad..37a104012c885d694745ce8a0112667ce610e3d5 100644 |
--- a/components/gcm_driver/instance_id/instance_id_driver_unittest.cc |
+++ b/components/gcm_driver/instance_id/instance_id_driver_unittest.cc |
@@ -46,7 +46,7 @@ class InstanceIDDriverTest : public testing::Test { |
void WaitForAsyncOperation(); |
- void DeleteIDCompleted(InstanceID* instance_id, InstanceID::Result result); |
+ void DeleteIDCompleted(InstanceID::Result result); |
InstanceIDDriver* driver() const { return driver_.get(); } |
InstanceID::Result delete_id_result() const { return delete_id_result_; } |
@@ -79,8 +79,7 @@ void InstanceIDDriverTest::WaitForAsyncOperation() { |
run_loop.Run(); |
} |
-void InstanceIDDriverTest::DeleteIDCompleted(InstanceID* instance_id, |
- InstanceID::Result result) { |
+void InstanceIDDriverTest::DeleteIDCompleted(InstanceID::Result result) { |
delete_id_result_ = result; |
if (!async_operation_completed_callback_.is_null()) |
async_operation_completed_callback_.Run(); |