| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "components/offline_pages/client_policy_controller.h" | 5 #include "components/offline_pages/client_policy_controller.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
| 10 #include "components/offline_pages/client_namespace_constants.h" | 10 #include "components/offline_pages/client_namespace_constants.h" |
| 11 | 11 |
| 12 using LifetimeType = offline_pages::LifetimePolicy::LifetimeType; | 12 using LifetimeType = offline_pages::LifetimePolicy::LifetimeType; |
| 13 | 13 |
| 14 namespace offline_pages { | 14 namespace offline_pages { |
| 15 | 15 |
| 16 ClientPolicyController::ClientPolicyController() { | 16 ClientPolicyController::ClientPolicyController() { |
| 17 policies_.clear(); | 17 policies_.clear(); |
| 18 // Manually defining client policies for bookmark and last_n. | 18 // Manually defining client policies for bookmark and last_n. |
| 19 policies_.insert(std::make_pair( | 19 policies_.insert(std::make_pair( |
| 20 kBookmarkNamespace, | 20 kBookmarkNamespace, |
| 21 MakePolicy(kBookmarkNamespace, LifetimeType::TEMPORARY, | 21 MakePolicy(kBookmarkNamespace, LifetimeType::TEMPORARY, |
| 22 base::TimeDelta::FromDays(7), kUnlimitedPages))); | 22 base::TimeDelta::FromDays(7), kUnlimitedPages, 1))); |
| 23 policies_.insert(std::make_pair( | 23 policies_.insert(std::make_pair( |
| 24 kLastNNamespace, MakePolicy(kLastNNamespace, LifetimeType::TEMPORARY, | 24 kLastNNamespace, |
| 25 base::TimeDelta::FromDays(2), 20))); | 25 MakePolicy(kLastNNamespace, LifetimeType::TEMPORARY, |
| 26 base::TimeDelta::FromDays(2), kUnlimitedPages, 1))); |
| 26 // Fallback policy. | 27 // Fallback policy. |
| 27 policies_.insert(std::make_pair( | 28 policies_.insert(std::make_pair( |
| 28 kDefaultNamespace, MakePolicy(kDefaultNamespace, LifetimeType::TEMPORARY, | 29 kDefaultNamespace, MakePolicy(kDefaultNamespace, LifetimeType::TEMPORARY, |
| 29 base::TimeDelta::FromDays(1), 10))); | 30 base::TimeDelta::FromDays(1), 10, 1))); |
| 30 } | 31 } |
| 31 | 32 |
| 32 ClientPolicyController::~ClientPolicyController() {} | 33 ClientPolicyController::~ClientPolicyController() {} |
| 33 | 34 |
| 34 // static | 35 // static |
| 35 const OfflinePageClientPolicy ClientPolicyController::MakePolicy( | 36 const OfflinePageClientPolicy ClientPolicyController::MakePolicy( |
| 36 const std::string& name_space, | 37 const std::string& name_space, |
| 37 LifetimeType lifetime_type, | 38 LifetimeType lifetime_type, |
| 38 const base::TimeDelta& expire_period, | 39 const base::TimeDelta& expire_period, |
| 39 size_t page_limit) { | 40 size_t page_limit, |
| 40 OfflinePageClientPolicy policy( | 41 size_t pages_allowed_per_url) { |
| 41 {name_space, {lifetime_type, expire_period, page_limit}}); | 42 OfflinePageClientPolicy policy({name_space, |
| 43 {lifetime_type, expire_period, page_limit}, |
| 44 pages_allowed_per_url}); |
| 42 return policy; | 45 return policy; |
| 43 } | 46 } |
| 44 | 47 |
| 45 const OfflinePageClientPolicy& ClientPolicyController::GetPolicy( | 48 const OfflinePageClientPolicy& ClientPolicyController::GetPolicy( |
| 46 const std::string& name_space) const { | 49 const std::string& name_space) const { |
| 47 const auto& iter = policies_.find(name_space); | 50 const auto& iter = policies_.find(name_space); |
| 48 if (iter != policies_.end()) | 51 if (iter != policies_.end()) |
| 49 return iter->second; | 52 return iter->second; |
| 50 // Fallback when the namespace isn't defined. | 53 // Fallback when the namespace isn't defined. |
| 51 return policies_.at(kDefaultNamespace); | 54 return policies_.at(kDefaultNamespace); |
| 52 } | 55 } |
| 53 | 56 |
| 54 } // namespace offline_pages | 57 } // namespace offline_pages |
| OLD | NEW |