Chromium Code Reviews| Index: chromeos/dbus/fake_update_engine_client.h |
| diff --git a/chromeos/dbus/fake_update_engine_client.h b/chromeos/dbus/fake_update_engine_client.h |
| index 91384deef996e071c67ef3a6bedeb5c83452c7dd..1ecabc2d98d7a94210951279aaf87efa441ce525 100644 |
| --- a/chromeos/dbus/fake_update_engine_client.h |
| +++ b/chromeos/dbus/fake_update_engine_client.h |
| @@ -65,6 +65,10 @@ class FakeUpdateEngineClient : public UpdateEngineClient { |
| return reboot_after_update_call_count_; |
| } |
| + int request_update_check_call_count() const { |
|
satorux1
2014/09/22 07:02:11
Please add a comment.
ygorshenin1
2014/09/22 09:23:26
Done.
|
| + return request_update_check_call_count_; |
| + } |
| + |
| // Returns how many times Rollback() is called. |
| int rollback_call_count() const { return rollback_call_count_; } |
| @@ -78,6 +82,7 @@ class FakeUpdateEngineClient : public UpdateEngineClient { |
| UpdateEngineClient::UpdateCheckResult update_check_result_; |
| bool can_rollback_stub_result_; |
| int reboot_after_update_call_count_; |
| + int request_update_check_call_count_; |
| int rollback_call_count_; |
| int can_rollback_call_count_; |
| }; |