| 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 #include "webkit/browser/quota/mock_storage_client.h" | 5 #include "webkit/browser/quota/mock_storage_client.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/memory/singleton.h" | 10 #include "base/memory/singleton.h" |
| 11 #include "base/message_loop/message_loop_proxy.h" | 11 #include "base/message_loop/message_loop_proxy.h" |
| 12 #include "base/stl_util.h" | 12 #include "base/stl_util.h" |
| 13 #include "net/base/net_util.h" | 13 #include "net/base/net_util.h" |
| 14 #include "webkit/browser/quota/quota_manager.h" | 14 #include "webkit/browser/quota/quota_manager_proxy.h" |
| 15 | 15 |
| 16 namespace quota { | 16 namespace quota { |
| 17 | 17 |
| 18 using std::make_pair; | 18 using std::make_pair; |
| 19 | 19 |
| 20 MockStorageClient::MockStorageClient( | 20 MockStorageClient::MockStorageClient( |
| 21 QuotaManagerProxy* quota_manager_proxy, | 21 QuotaManagerProxy* quota_manager_proxy, |
| 22 const MockOriginData* mock_data, QuotaClient::ID id, size_t mock_data_size) | 22 const MockOriginData* mock_data, QuotaClient::ID id, size_t mock_data_size) |
| 23 : quota_manager_proxy_(quota_manager_proxy), | 23 : quota_manager_proxy_(quota_manager_proxy), |
| 24 id_(id), | 24 id_(id), |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 int64 delta = itr->second; | 177 int64 delta = itr->second; |
| 178 quota_manager_proxy_-> | 178 quota_manager_proxy_-> |
| 179 NotifyStorageModified(id(), origin_url, type, -delta); | 179 NotifyStorageModified(id(), origin_url, type, -delta); |
| 180 origin_data_.erase(itr); | 180 origin_data_.erase(itr); |
| 181 } | 181 } |
| 182 | 182 |
| 183 callback.Run(kQuotaStatusOk); | 183 callback.Run(kQuotaStatusOk); |
| 184 } | 184 } |
| 185 | 185 |
| 186 } // namespace quota | 186 } // namespace quota |
| OLD | NEW |