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

Unified Diff: chrome/browser/chromeos/platform_keys/platform_keys_nss.cc

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h Created 6 years, 2 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
Index: chrome/browser/chromeos/platform_keys/platform_keys_nss.cc
diff --git a/chrome/browser/chromeos/platform_keys/platform_keys_nss.cc b/chrome/browser/chromeos/platform_keys/platform_keys_nss.cc
index 5b0151aabddb0d8a67dc5772c12d06f96727b6d2..f094c5fc5acba18af0e8264a1ddb499f34c473ea 100644
--- a/chrome/browser/chromeos/platform_keys/platform_keys_nss.cc
+++ b/chrome/browser/chromeos/platform_keys/platform_keys_nss.cc
@@ -141,7 +141,7 @@ class GenerateRSAKeyState : public NSSOperationState {
virtual ~GenerateRSAKeyState() {}
virtual void OnError(const tracked_objects::Location& from,
- const std::string& error_message) OVERRIDE {
+ const std::string& error_message) override {
CallBack(from, std::string() /* no public key */, error_message);
}
@@ -168,7 +168,7 @@ class SignState : public NSSOperationState {
virtual ~SignState() {}
virtual void OnError(const tracked_objects::Location& from,
- const std::string& error_message) OVERRIDE {
+ const std::string& error_message) override {
CallBack(from, std::string() /* no signature */, error_message);
}
@@ -194,7 +194,7 @@ class GetCertificatesState : public NSSOperationState {
virtual ~GetCertificatesState() {}
virtual void OnError(const tracked_objects::Location& from,
- const std::string& error_message) OVERRIDE {
+ const std::string& error_message) override {
CallBack(from,
scoped_ptr<net::CertificateList>() /* no certificates */,
error_message);
@@ -221,7 +221,7 @@ class ImportCertificateState : public NSSOperationState {
virtual ~ImportCertificateState() {}
virtual void OnError(const tracked_objects::Location& from,
- const std::string& error_message) OVERRIDE {
+ const std::string& error_message) override {
CallBack(from, error_message);
}
@@ -244,7 +244,7 @@ class RemoveCertificateState : public NSSOperationState {
virtual ~RemoveCertificateState() {}
virtual void OnError(const tracked_objects::Location& from,
- const std::string& error_message) OVERRIDE {
+ const std::string& error_message) override {
CallBack(from, error_message);
}
@@ -266,7 +266,7 @@ class GetTokensState : public NSSOperationState {
virtual ~GetTokensState() {}
virtual void OnError(const tracked_objects::Location& from,
- const std::string& error_message) OVERRIDE {
+ const std::string& error_message) override {
CallBack(from,
scoped_ptr<std::vector<std::string> >() /* no token ids */,
error_message);

Powered by Google App Engine
This is Rietveld 408576698