| 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/downloads/download_ui_adapter.h" | 5 #include "components/offline_pages/downloads/download_ui_adapter.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/guid.h" | 8 #include "base/guid.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 std::vector<int64_t> page_ids; | 123 std::vector<int64_t> page_ids; |
| 124 page_ids.push_back(it->second->offline_id); | 124 page_ids.push_back(it->second->offline_id); |
| 125 // TODO(dimich): This should be ExpirePages(...Now()..) when Expire is | 125 // TODO(dimich): This should be ExpirePages(...Now()..) when Expire is |
| 126 // firing Observer method. The resulting Observer notification will update | 126 // firing Observer method. The resulting Observer notification will update |
| 127 // local cache. | 127 // local cache. |
| 128 model_->DeletePagesByOfflineId( | 128 model_->DeletePagesByOfflineId( |
| 129 page_ids, base::Bind(&DownloadUIAdapter::OnDeletePagesDone, | 129 page_ids, base::Bind(&DownloadUIAdapter::OnDeletePagesDone, |
| 130 weak_ptr_factory_.GetWeakPtr())); | 130 weak_ptr_factory_.GetWeakPtr())); |
| 131 } | 131 } |
| 132 | 132 |
| 133 GURL DownloadUIAdapter::GetOfflineUrlByGuid( | 133 int64_t DownloadUIAdapter::GetOfflineIdByGuid( |
| 134 const std::string& guid) const { | 134 const std::string& guid) const { |
| 135 // TODO(dimich): when requests are also in the cache, filter them out. | 135 // TODO(dimich): when requests are also in the cache, filter them out. |
| 136 // Requests do not yet have offline URL. | 136 // Requests do not yet have offline ID. |
| 137 DownloadUIItems::const_iterator it = items_.find(guid); | 137 DownloadUIItems::const_iterator it = items_.find(guid); |
| 138 if (it != items_.end()) | 138 if (it != items_.end()) |
| 139 return it->second->offline_url; | 139 return it->second->offline_id; |
| 140 return GURL(); | 140 return 0; |
| 141 } | 141 } |
| 142 | 142 |
| 143 // Note that several LoadCache calls may be issued before the async GetAllPages | 143 // Note that several LoadCache calls may be issued before the async GetAllPages |
| 144 // comes back. | 144 // comes back. |
| 145 void DownloadUIAdapter::LoadCache() { | 145 void DownloadUIAdapter::LoadCache() { |
| 146 // TODO(dimich): Add fetching from RequestQueue as well. | 146 // TODO(dimich): Add fetching from RequestQueue as well. |
| 147 state_ = State::LOADING; | 147 state_ = State::LOADING; |
| 148 model_->GetAllPages( | 148 model_->GetAllPages( |
| 149 base::Bind(&DownloadUIAdapter::OnOfflinePagesLoaded, | 149 base::Bind(&DownloadUIAdapter::OnOfflinePagesLoaded, |
| 150 weak_ptr_factory_.GetWeakPtr())); | 150 weak_ptr_factory_.GetWeakPtr())); |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 } | 209 } |
| 210 | 210 |
| 211 // static | 211 // static |
| 212 bool DownloadUIAdapter::IsVisibleInUI(const ClientId& client_id) { | 212 bool DownloadUIAdapter::IsVisibleInUI(const ClientId& client_id) { |
| 213 const std::string& name_space = client_id.name_space; | 213 const std::string& name_space = client_id.name_space; |
| 214 return (name_space == kAsyncNamespace || name_space == kDownloadNamespace) && | 214 return (name_space == kAsyncNamespace || name_space == kDownloadNamespace) && |
| 215 base::IsValidGUID(client_id.id); | 215 base::IsValidGUID(client_id.id); |
| 216 } | 216 } |
| 217 | 217 |
| 218 } // namespace offline_pages | 218 } // namespace offline_pages |
| OLD | NEW |