Chromium Code Reviews| Index: components/gcm_driver/fake_gcm_client.cc |
| diff --git a/components/gcm_driver/fake_gcm_client.cc b/components/gcm_driver/fake_gcm_client.cc |
| index ecd7f357bad5caeddcf8909007df8ab76cc81f1b..ef2acf05aa3b33ef73895c92fafc1e6882359a65 100644 |
| --- a/components/gcm_driver/fake_gcm_client.cc |
| +++ b/components/gcm_driver/fake_gcm_client.cc |
| @@ -160,8 +160,8 @@ void FakeGCMClient::Send(const std::string& app_id, |
| void FakeGCMClient::RecordDecryptionFailure( |
| const std::string& app_id, |
| - GCMEncryptionProvider::DecryptionFailure reason) { |
| - recorder_.RecordDecryptionFailure(app_id, reason); |
| + GCMEncryptionProvider::DecryptionResult result) { |
| + recorder_.RecordDecryptionFailure(app_id, result); |
|
johnme
2016/02/18 17:59:38
Why does the fake record stats? Is this for a test
Peter Beverloo
2016/02/18 21:22:59
Yes. See GCMDriverFunctionalTest.EncryptedMessageR
|
| } |
| void FakeGCMClient::SetRecording(bool recording) { |