Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(513)

Side by Side Diff: chrome/browser/browsing_data/browsing_data_quota_helper_impl.cc

Issue 10948006: Cleanup: quota::HostQuotaCallback do not need to pass host and type as arguments (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed missed compile errors in unit_tests and fixed broken QuotaManagerTests Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/browsing_data/browsing_data_quota_helper_impl.h" 5 #include "chrome/browser/browsing_data/browsing_data_quota_helper_impl.h"
6 6
7 #include <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 info->host = itr->first; 168 info->host = itr->first;
169 result.push_back(*info); 169 result.push_back(*info);
170 } 170 }
171 171
172 callback_.Run(result); 172 callback_.Run(result);
173 callback_.Reset(); 173 callback_.Reset();
174 } 174 }
175 175
176 void BrowsingDataQuotaHelperImpl::DidRevokeHostQuota( 176 void BrowsingDataQuotaHelperImpl::DidRevokeHostQuota(
177 quota::QuotaStatusCode status_unused, 177 quota::QuotaStatusCode status_unused,
178 const std::string& host_unused,
179 quota::StorageType type_unused,
180 int64 quota_unused) { 178 int64 quota_unused) {
181 } 179 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698