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

Unified Diff: chrome/browser/net/cookie_store_util.cc

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 | « chrome/browser/net/connection_tester_unittest.cc ('k') | chrome/browser/net/crl_set_fetcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/cookie_store_util.cc
diff --git a/chrome/browser/net/cookie_store_util.cc b/chrome/browser/net/cookie_store_util.cc
index 5e5d780f909fa4851cb99f62e6f72aee9c6d29ee..10cd52c26f5d2f3b780d53c5f5cc55cfbbe8f04d 100644
--- a/chrome/browser/net/cookie_store_util.cc
+++ b/chrome/browser/net/cookie_store_util.cc
@@ -44,14 +44,14 @@ class ChromeCookieMonsterDelegate : public net::CookieMonsterDelegate {
virtual void OnCookieChanged(
const net::CanonicalCookie& cookie,
bool removed,
- net::CookieMonster::Delegate::ChangeCause cause) OVERRIDE {
+ net::CookieMonster::Delegate::ChangeCause cause) override {
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
base::Bind(&ChromeCookieMonsterDelegate::OnCookieChangedAsyncHelper,
this, cookie, removed, cause));
}
- virtual void OnLoaded() OVERRIDE {
+ virtual void OnLoaded() override {
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
base::Bind(&ChromeCookieMonsterDelegate::OnLoadedAsyncHelper,
@@ -130,9 +130,9 @@ namespace {
class CookieOSCryptoDelegate : public content::CookieCryptoDelegate {
public:
virtual bool EncryptString(const std::string& plaintext,
- std::string* ciphertext) OVERRIDE;
+ std::string* ciphertext) override;
virtual bool DecryptString(const std::string& ciphertext,
- std::string* plaintext) OVERRIDE;
+ std::string* plaintext) override;
};
bool CookieOSCryptoDelegate::EncryptString(const std::string& plaintext,
« no previous file with comments | « chrome/browser/net/connection_tester_unittest.cc ('k') | chrome/browser/net/crl_set_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698