Index: net/cookies/cookie_monster.h |
diff --git a/net/cookies/cookie_monster.h b/net/cookies/cookie_monster.h |
index ea448c5a7d8d599317f39b526c9ce0ea7af25a8d..746f2a48b99e8555823cc8266114330496431fab 100644 |
--- a/net/cookies/cookie_monster.h |
+++ b/net/cookies/cookie_monster.h |
@@ -243,7 +243,7 @@ class NET_EXPORT CookieMonster : public CookieStore { |
const GURL& url, |
const std::string& cookie_line, |
const CookieOptions& options, |
- const SetCookiesCallback& callback) OVERRIDE; |
+ const SetCookiesCallback& callback) override; |
// Gets all cookies that apply to |url| given |options|. |
// The returned cookies are ordered by longest path, then earliest |
@@ -251,18 +251,18 @@ class NET_EXPORT CookieMonster : public CookieStore { |
virtual void GetCookiesWithOptionsAsync( |
const GURL& url, |
const CookieOptions& options, |
- const GetCookiesCallback& callback) OVERRIDE; |
+ const GetCookiesCallback& callback) override; |
// Invokes GetAllCookiesForURLWithOptions with options set to include HTTP |
// only cookies. |
virtual void GetAllCookiesForURLAsync( |
const GURL& url, |
- const GetCookieListCallback& callback) OVERRIDE; |
+ const GetCookieListCallback& callback) override; |
// Deletes all cookies with that might apply to |url| that has |cookie_name|. |
virtual void DeleteCookieAsync( |
const GURL& url, const std::string& cookie_name, |
- const base::Closure& callback) OVERRIDE; |
+ const base::Closure& callback) override; |
// Deletes all of the cookies that have a creation_date greater than or equal |
// to |delete_begin| and less than |delete_end|. |
@@ -270,7 +270,7 @@ class NET_EXPORT CookieMonster : public CookieStore { |
virtual void DeleteAllCreatedBetweenAsync( |
const base::Time& delete_begin, |
const base::Time& delete_end, |
- const DeleteCallback& callback) OVERRIDE; |
+ const DeleteCallback& callback) override; |
// Deletes all of the cookies that match the host of the given URL |
// regardless of path and that have a creation_date greater than or |
@@ -282,11 +282,11 @@ class NET_EXPORT CookieMonster : public CookieStore { |
const base::Time delete_begin, |
const base::Time delete_end, |
const GURL& url, |
- const DeleteCallback& callback) OVERRIDE; |
+ const DeleteCallback& callback) override; |
- virtual void DeleteSessionCookiesAsync(const DeleteCallback&) OVERRIDE; |
+ virtual void DeleteSessionCookiesAsync(const DeleteCallback&) override; |
- virtual CookieMonster* GetCookieMonster() OVERRIDE; |
+ virtual CookieMonster* GetCookieMonster() override; |
// Enables writing session cookies into the cookie database. If this this |
// method is called, it must be called before first use of the instance |