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

Unified Diff: net/ssl/default_channel_id_store.h

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/client_cert_store_win.h ('k') | net/ssl/default_channel_id_store.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.h
diff --git a/net/ssl/default_channel_id_store.h b/net/ssl/default_channel_id_store.h
index 9c307e8c80c0933fb543221a8dd80517d96517c9..3882c1f4a4430d702ba46a8911685ec62995e5ff 100644
--- a/net/ssl/default_channel_id_store.h
+++ b/net/ssl/default_channel_id_store.h
@@ -49,25 +49,25 @@ class NET_EXPORT DefaultChannelIDStore : public ChannelIDStore {
base::Time* expiration_time,
std::string* private_key_result,
std::string* cert_result,
- const GetChannelIDCallback& callback) OVERRIDE;
+ const GetChannelIDCallback& callback) override;
virtual void SetChannelID(
const std::string& server_identifier,
base::Time creation_time,
base::Time expiration_time,
const std::string& private_key,
- const std::string& cert) OVERRIDE;
+ const std::string& cert) override;
virtual void DeleteChannelID(
const std::string& server_identifier,
- const base::Closure& callback) OVERRIDE;
+ const base::Closure& callback) override;
virtual void DeleteAllCreatedBetween(
base::Time delete_begin,
base::Time delete_end,
- const base::Closure& callback) OVERRIDE;
- virtual void DeleteAll(const base::Closure& callback) OVERRIDE;
+ const base::Closure& callback) override;
+ virtual void DeleteAll(const base::Closure& callback) override;
virtual void GetAllChannelIDs(
- const GetChannelIDListCallback& callback) OVERRIDE;
- virtual int GetChannelIDCount() OVERRIDE;
- virtual void SetForceKeepSessionState() OVERRIDE;
+ const GetChannelIDListCallback& callback) override;
+ virtual int GetChannelIDCount() override;
+ virtual void SetForceKeepSessionState() override;
private:
class Task;
« no previous file with comments | « net/ssl/client_cert_store_win.h ('k') | net/ssl/default_channel_id_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698