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

Unified Diff: net/ssl/default_channel_id_store.cc

Issue 623213004: replace OVERRIDE and FINAL with override and final in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo unwanted change in comment 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
« no previous file with comments | « net/ssl/default_channel_id_store.h ('k') | net/ssl/default_channel_id_store_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/default_channel_id_store.cc
diff --git a/net/ssl/default_channel_id_store.cc b/net/ssl/default_channel_id_store.cc
index 1dec6c163aab42625e2ed1a10e57be32ed618b0f..4f43fbc4643ddfab8696e336816a8521166363dd 100644
--- a/net/ssl/default_channel_id_store.cc
+++ b/net/ssl/default_channel_id_store.cc
@@ -42,7 +42,7 @@ class DefaultChannelIDStore::GetChannelIDTask
GetChannelIDTask(const std::string& server_identifier,
const GetChannelIDCallback& callback);
virtual ~GetChannelIDTask();
- virtual void Run(DefaultChannelIDStore* store) OVERRIDE;
+ virtual void Run(DefaultChannelIDStore* store) override;
private:
std::string server_identifier_;
@@ -84,7 +84,7 @@ class DefaultChannelIDStore::SetChannelIDTask
const std::string& private_key,
const std::string& cert);
virtual ~SetChannelIDTask();
- virtual void Run(DefaultChannelIDStore* store) OVERRIDE;
+ virtual void Run(DefaultChannelIDStore* store) override;
private:
std::string server_identifier_;
@@ -124,7 +124,7 @@ class DefaultChannelIDStore::DeleteChannelIDTask
DeleteChannelIDTask(const std::string& server_identifier,
const base::Closure& callback);
virtual ~DeleteChannelIDTask();
- virtual void Run(DefaultChannelIDStore* store) OVERRIDE;
+ virtual void Run(DefaultChannelIDStore* store) override;
private:
std::string server_identifier_;
@@ -159,7 +159,7 @@ class DefaultChannelIDStore::DeleteAllCreatedBetweenTask
base::Time delete_end,
const base::Closure& callback);
virtual ~DeleteAllCreatedBetweenTask();
- virtual void Run(DefaultChannelIDStore* store) OVERRIDE;
+ virtual void Run(DefaultChannelIDStore* store) override;
private:
base::Time delete_begin_;
@@ -195,7 +195,7 @@ class DefaultChannelIDStore::GetAllChannelIDsTask
public:
explicit GetAllChannelIDsTask(const GetChannelIDListCallback& callback);
virtual ~GetAllChannelIDsTask();
- virtual void Run(DefaultChannelIDStore* store) OVERRIDE;
+ virtual void Run(DefaultChannelIDStore* store) override;
private:
std::string server_identifier_;
« no previous file with comments | « net/ssl/default_channel_id_store.h ('k') | net/ssl/default_channel_id_store_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698