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

Unified Diff: net/base/cookie_store_test_helpers.h

Issue 8568021: Add OVERRIDE to net/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: net only Created 9 years, 1 month 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/base/cookie_monster_store_test.h ('k') | net/base/dnsrr_resolver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/cookie_store_test_helpers.h
diff --git a/net/base/cookie_store_test_helpers.h b/net/base/cookie_store_test_helpers.h
index e6107c6f1b8748cd461db2238a2d4a7519b93dac..ba8c6c814e073b520378853a39c1d0b5ecd1018c 100644
--- a/net/base/cookie_store_test_helpers.h
+++ b/net/base/cookie_store_test_helpers.h
@@ -28,16 +28,16 @@ class DelayedCookieMonster : public CookieStore {
const GURL& url,
const std::string& cookie_line,
const CookieOptions& options,
- const CookieMonster::SetCookiesCallback& callback);
+ const CookieMonster::SetCookiesCallback& callback) OVERRIDE;
virtual void GetCookiesWithOptionsAsync(
const GURL& url, const CookieOptions& options,
- const CookieMonster::GetCookiesCallback& callback);
+ const CookieMonster::GetCookiesCallback& callback) OVERRIDE;
virtual void GetCookiesWithInfoAsync(
const GURL& url,
const CookieOptions& options,
- const CookieMonster::GetCookieInfoCallback& callback);
+ const CookieMonster::GetCookieInfoCallback& callback) OVERRIDE;
virtual bool SetCookieWithOptions(const GURL& url,
const std::string& cookie_line,
@@ -56,9 +56,9 @@ class DelayedCookieMonster : public CookieStore {
virtual void DeleteCookieAsync(const GURL& url,
const std::string& cookie_name,
- const base::Closure& callback);
+ const base::Closure& callback) OVERRIDE;
- virtual CookieMonster* GetCookieMonster();
+ virtual CookieMonster* GetCookieMonster() OVERRIDE;
private:
« no previous file with comments | « net/base/cookie_monster_store_test.h ('k') | net/base/dnsrr_resolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698