| 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 #include "content/public/test/mock_storage_client.h" | 5 #include "storage/browser/test/mock_storage_client.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/location.h" | 10 #include "base/location.h" |
| 11 #include "base/memory/singleton.h" | 11 #include "base/memory/singleton.h" |
| 12 #include "base/single_thread_task_runner.h" | 12 #include "base/single_thread_task_runner.h" |
| 13 #include "base/stl_util.h" | 13 #include "base/stl_util.h" |
| 14 #include "base/threading/thread_task_runner_handle.h" | 14 #include "base/threading/thread_task_runner_handle.h" |
| 15 #include "net/base/url_util.h" | 15 #include "net/base/url_util.h" |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 int64_t delta = itr->second; | 182 int64_t delta = itr->second; |
| 183 quota_manager_proxy_-> | 183 quota_manager_proxy_-> |
| 184 NotifyStorageModified(id(), origin_url, type, -delta); | 184 NotifyStorageModified(id(), origin_url, type, -delta); |
| 185 origin_data_.erase(itr); | 185 origin_data_.erase(itr); |
| 186 } | 186 } |
| 187 | 187 |
| 188 callback.Run(kQuotaStatusOk); | 188 callback.Run(kQuotaStatusOk); |
| 189 } | 189 } |
| 190 | 190 |
| 191 } // namespace content | 191 } // namespace content |
| OLD | NEW |