| 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 ec65fe3f4e2ea1e769a48f08f5a3dcfcee64dd7e..b0bdbcab7810eba0981cc8bb458d9041c1cff01f 100644
|
| --- a/webkit/quota/mock_special_storage_policy.h
|
| +++ b/webkit/quota/mock_special_storage_policy.h
|
| @@ -19,6 +19,7 @@ class MockSpecialStoragePolicy : public quota::SpecialStoragePolicy {
|
|
|
| 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);
|
|
|
| void AddProtected(const GURL& origin) {
|
| @@ -42,6 +43,7 @@ class MockSpecialStoragePolicy : public quota::SpecialStoragePolicy {
|
| private:
|
| std::set<GURL> protected_;
|
| std::set<GURL> unlimited_;
|
| + std::set<GURL> session_only_;
|
| std::set<std::string> file_handlers_;
|
| };
|
| } // namespace quota
|
|
|