Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(370)

Unified Diff: chromeos/attestation/mock_attestation_flow.h

Issue 856563004: Update {virtual,override,final} to follow C++11 style in chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chromeos/audio/audio_devices_pref_handler_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/attestation/mock_attestation_flow.h
diff --git a/chromeos/attestation/mock_attestation_flow.h b/chromeos/attestation/mock_attestation_flow.h
index a4a26b99225a136ece5e386ecaa449b11af3fe62..efefd94f3125651e9c882a062016d5d858c95f96 100644
--- a/chromeos/attestation/mock_attestation_flow.h
+++ b/chromeos/attestation/mock_attestation_flow.h
@@ -18,17 +18,17 @@ namespace attestation {
class FakeServerProxy : public ServerProxy {
public:
FakeServerProxy();
- virtual ~FakeServerProxy();
+ ~FakeServerProxy() override;
void set_result(bool result) {
result_ = result;
}
- virtual void SendEnrollRequest(const std::string& request,
- const DataCallback& callback) override;
+ void SendEnrollRequest(const std::string& request,
+ const DataCallback& callback) override;
- virtual void SendCertificateRequest(const std::string& request,
- const DataCallback& callback) override;
+ void SendCertificateRequest(const std::string& request,
+ const DataCallback& callback) override;
private:
bool result_;
« no previous file with comments | « no previous file | chromeos/audio/audio_devices_pref_handler_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698