| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_PUBLIC_TEST_MOCK_SPECIAL_STORAGE_POLICY_H_ | 5 #ifndef CONTENT_PUBLIC_TEST_MOCK_SPECIAL_STORAGE_POLICY_H_ |
| 6 #define CONTENT_PUBLIC_TEST_MOCK_SPECIAL_STORAGE_POLICY_H_ | 6 #define CONTENT_PUBLIC_TEST_MOCK_SPECIAL_STORAGE_POLICY_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "storage/browser/quota/special_storage_policy.h" | 11 #include "storage/browser/quota/special_storage_policy.h" |
| 12 #include "url/gurl.h" | 12 #include "url/gurl.h" |
| 13 | 13 |
| 14 using storage::SpecialStoragePolicy; | 14 using storage::SpecialStoragePolicy; |
| 15 | 15 |
| 16 namespace content { | 16 namespace content { |
| 17 | 17 |
| 18 class MockSpecialStoragePolicy : public storage::SpecialStoragePolicy { | 18 class MockSpecialStoragePolicy : public storage::SpecialStoragePolicy { |
| 19 public: | 19 public: |
| 20 MockSpecialStoragePolicy(); | 20 MockSpecialStoragePolicy(); |
| 21 | 21 |
| 22 bool IsStorageProtected(const GURL& origin) override; | 22 bool IsStorageProtected(const GURL& origin) override; |
| 23 bool IsStorageUnlimited(const GURL& origin) override; | 23 bool IsStorageUnlimited(const GURL& origin) override; |
| 24 bool IsStorageSessionOnly(const GURL& origin) override; | 24 bool IsStorageSessionOnly(const GURL& origin) override; |
| 25 bool CanQueryDiskSize(const GURL& origin) override; | 25 bool CanQueryDiskSize(const GURL& origin) override; |
| 26 bool HasIsolatedStorage(const GURL& origin) override; | 26 bool HasIsolatedStorage(const GURL& origin) override; |
| 27 bool HasSessionOnlyOrigins() override; | 27 bool HasSessionOnlyOrigins() override; |
| 28 bool IsStorageDurable(const GURL& origin) override; |
| 28 | 29 |
| 29 void AddProtected(const GURL& origin) { | 30 void AddProtected(const GURL& origin) { |
| 30 protected_.insert(origin); | 31 protected_.insert(origin); |
| 31 } | 32 } |
| 32 | 33 |
| 33 void AddUnlimited(const GURL& origin) { | 34 void AddUnlimited(const GURL& origin) { |
| 34 unlimited_.insert(origin); | 35 unlimited_.insert(origin); |
| 35 } | 36 } |
| 36 | 37 |
| 37 void RemoveUnlimited(const GURL& origin) { | 38 void RemoveUnlimited(const GURL& origin) { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 51 } | 52 } |
| 52 | 53 |
| 53 void RemoveIsolated(const GURL& origin) { | 54 void RemoveIsolated(const GURL& origin) { |
| 54 isolated_.erase(origin); | 55 isolated_.erase(origin); |
| 55 } | 56 } |
| 56 | 57 |
| 57 void SetAllUnlimited(bool all_unlimited) { | 58 void SetAllUnlimited(bool all_unlimited) { |
| 58 all_unlimited_ = all_unlimited; | 59 all_unlimited_ = all_unlimited; |
| 59 } | 60 } |
| 60 | 61 |
| 62 void AddDurable(const GURL& origin) { |
| 63 durable_.insert(origin); |
| 64 } |
| 65 |
| 61 void Reset() { | 66 void Reset() { |
| 62 protected_.clear(); | 67 protected_.clear(); |
| 63 unlimited_.clear(); | 68 unlimited_.clear(); |
| 64 session_only_.clear(); | 69 session_only_.clear(); |
| 65 can_query_disk_size_.clear(); | 70 can_query_disk_size_.clear(); |
| 66 file_handlers_.clear(); | 71 file_handlers_.clear(); |
| 67 isolated_.clear(); | 72 isolated_.clear(); |
| 68 all_unlimited_ = false; | 73 all_unlimited_ = false; |
| 69 } | 74 } |
| 70 | 75 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 82 | 87 |
| 83 protected: | 88 protected: |
| 84 ~MockSpecialStoragePolicy() override; | 89 ~MockSpecialStoragePolicy() override; |
| 85 | 90 |
| 86 private: | 91 private: |
| 87 std::set<GURL> protected_; | 92 std::set<GURL> protected_; |
| 88 std::set<GURL> unlimited_; | 93 std::set<GURL> unlimited_; |
| 89 std::set<GURL> session_only_; | 94 std::set<GURL> session_only_; |
| 90 std::set<GURL> can_query_disk_size_; | 95 std::set<GURL> can_query_disk_size_; |
| 91 std::set<GURL> isolated_; | 96 std::set<GURL> isolated_; |
| 97 std::set<GURL> durable_; |
| 92 std::set<std::string> file_handlers_; | 98 std::set<std::string> file_handlers_; |
| 93 | 99 |
| 94 bool all_unlimited_; | 100 bool all_unlimited_; |
| 95 }; | 101 }; |
| 96 } // namespace content | 102 } // namespace content |
| 97 | 103 |
| 98 #endif // CONTENT_PUBLIC_TEST_MOCK_SPECIAL_STORAGE_POLICY_H_ | 104 #endif // CONTENT_PUBLIC_TEST_MOCK_SPECIAL_STORAGE_POLICY_H_ |
| OLD | NEW |