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

Unified Diff: content/browser/net/sqlite_persistent_cookie_store_unittest.cc

Issue 633843002: Replacing the OVERRIDE with override and FINAL with final in content/browser/[dom_storage|gamepad|… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: content/browser/net/sqlite_persistent_cookie_store_unittest.cc
diff --git a/content/browser/net/sqlite_persistent_cookie_store_unittest.cc b/content/browser/net/sqlite_persistent_cookie_store_unittest.cc
index f2604d16078a4b1dab289b59cc4614d565dab3bc..395b29fefdebcfd308d418389b608b629f058369 100644
--- a/content/browser/net/sqlite_persistent_cookie_store_unittest.cc
+++ b/content/browser/net/sqlite_persistent_cookie_store_unittest.cc
@@ -41,9 +41,9 @@ class CookieCryptor : public content::CookieCryptoDelegate {
public:
CookieCryptor();
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;
private:
scoped_ptr<crypto::SymmetricKey> key_;
@@ -173,11 +173,11 @@ class SQLitePersistentCookieStoreTest : public testing::Test {
return contents;
}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
DestroyStore();
pool_owner_->pool()->Shutdown();
}
« no previous file with comments | « content/browser/net/sqlite_persistent_cookie_store_perftest.cc ('k') | content/browser/net/view_http_cache_job_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698