summaryrefslogtreecommitdiffstats
path: root/webkit/quota/mock_special_storage_policy.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/quota/mock_special_storage_policy.h')
-rw-r--r--webkit/quota/mock_special_storage_policy.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/webkit/quota/mock_special_storage_policy.h b/webkit/quota/mock_special_storage_policy.h
index 6f0ec13..c3b5d85 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);