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

Unified Diff: webkit/quota/mock_special_storage_policy.h

Issue 8539047: Add OVERRIDE to webkit/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix 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 | « webkit/plugins/npapi/webplugin_impl.h ('k') | webkit/support/simple_database_system.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/quota/mock_special_storage_policy.h
diff --git a/webkit/quota/mock_special_storage_policy.h b/webkit/quota/mock_special_storage_policy.h
index 6f0ec1319f96b18a7b5b476a63b098a045aa340c..c3b5d85332a614646d41f47ef94ba84f8fbe5cfd 100644
--- a/webkit/quota/mock_special_storage_policy.h
+++ b/webkit/quota/mock_special_storage_policy.h
@@ -7,6 +7,7 @@
#include <set>
#include <string>
+
#include "googleurl/src/gurl.h"
#include "webkit/quota/special_storage_policy.h"
@@ -17,11 +18,11 @@ class MockSpecialStoragePolicy : public quota::SpecialStoragePolicy {
MockSpecialStoragePolicy();
virtual ~MockSpecialStoragePolicy();
- virtual bool IsStorageProtected(const GURL& origin);
- virtual bool IsStorageUnlimited(const GURL& origin);
- virtual bool IsStorageSessionOnly(const GURL& origin);
- virtual bool IsFileHandler(const std::string& extension_id);
- virtual bool HasSessionOnlyOrigins();
+ virtual bool IsStorageProtected(const GURL& origin) OVERRIDE;
+ virtual bool IsStorageUnlimited(const GURL& origin) OVERRIDE;
+ virtual bool IsStorageSessionOnly(const GURL& origin) OVERRIDE;
+ virtual bool IsFileHandler(const std::string& extension_id) OVERRIDE;
+ virtual bool HasSessionOnlyOrigins() OVERRIDE;
void AddProtected(const GURL& origin) {
protected_.insert(origin);
« no previous file with comments | « webkit/plugins/npapi/webplugin_impl.h ('k') | webkit/support/simple_database_system.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698