| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 WEBKIT_BROWSER_QUOTA_MOCK_SPECIAL_STORAGE_POLICY_H_ | 5 #ifndef CONTENT_BROWSER_QUOTA_MOCK_SPECIAL_STORAGE_POLICY_H_ |
| 6 #define WEBKIT_BROWSER_QUOTA_MOCK_SPECIAL_STORAGE_POLICY_H_ | 6 #define CONTENT_BROWSER_QUOTA_MOCK_SPECIAL_STORAGE_POLICY_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "url/gurl.h" | 11 #include "url/gurl.h" |
| 12 #include "webkit/browser/quota/special_storage_policy.h" | 12 #include "webkit/browser/quota/special_storage_policy.h" |
| 13 | 13 |
| 14 namespace quota { | 14 using quota::SpecialStoragePolicy; |
| 15 |
| 16 namespace content { |
| 15 | 17 |
| 16 class MockSpecialStoragePolicy : public quota::SpecialStoragePolicy { | 18 class MockSpecialStoragePolicy : public quota::SpecialStoragePolicy { |
| 17 public: | 19 public: |
| 18 MockSpecialStoragePolicy(); | 20 MockSpecialStoragePolicy(); |
| 19 | 21 |
| 20 virtual bool IsStorageProtected(const GURL& origin) OVERRIDE; | 22 virtual bool IsStorageProtected(const GURL& origin) OVERRIDE; |
| 21 virtual bool IsStorageUnlimited(const GURL& origin) OVERRIDE; | 23 virtual bool IsStorageUnlimited(const GURL& origin) OVERRIDE; |
| 22 virtual bool IsStorageSessionOnly(const GURL& origin) OVERRIDE; | 24 virtual bool IsStorageSessionOnly(const GURL& origin) OVERRIDE; |
| 23 virtual bool CanQueryDiskSize(const GURL& origin) OVERRIDE; | 25 virtual bool CanQueryDiskSize(const GURL& origin) OVERRIDE; |
| 24 virtual bool IsFileHandler(const std::string& extension_id) OVERRIDE; | 26 virtual bool IsFileHandler(const std::string& extension_id) OVERRIDE; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 private: | 91 private: |
| 90 std::set<GURL> protected_; | 92 std::set<GURL> protected_; |
| 91 std::set<GURL> unlimited_; | 93 std::set<GURL> unlimited_; |
| 92 std::set<GURL> session_only_; | 94 std::set<GURL> session_only_; |
| 93 std::set<GURL> can_query_disk_size_; | 95 std::set<GURL> can_query_disk_size_; |
| 94 std::set<GURL> isolated_; | 96 std::set<GURL> isolated_; |
| 95 std::set<std::string> file_handlers_; | 97 std::set<std::string> file_handlers_; |
| 96 | 98 |
| 97 bool all_unlimited_; | 99 bool all_unlimited_; |
| 98 }; | 100 }; |
| 99 } // namespace quota | 101 } // namespace content |
| 100 | 102 |
| 101 #endif // WEBKIT_BROWSER_QUOTA_MOCK_SPECIAL_STORAGE_POLICY_H_ | 103 #endif // CONTENT_BROWSER_QUOTA_MOCK_SPECIAL_STORAGE_POLICY_H_ |
| OLD | NEW |