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

Unified Diff: content/child/quota_dispatcher.cc

Issue 2558673003: Move RequestQuotaPermission from RenderView to RenderFrame. (Closed)
Patch Set: Created 4 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/child/quota_dispatcher.h ('k') | content/common/quota_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/quota_dispatcher.cc
diff --git a/content/child/quota_dispatcher.cc b/content/child/quota_dispatcher.cc
index e36db05fa602016c0d880f604c95b63f48b37c2e..1b70cb7d0fc4c56c1dc2b43128d586a562c539ae 100644
--- a/content/child/quota_dispatcher.cc
+++ b/content/child/quota_dispatcher.cc
@@ -120,7 +120,7 @@ void QuotaDispatcher::QueryStorageUsageAndQuota(
request_id, origin_url, type));
}
-void QuotaDispatcher::RequestStorageQuota(int render_view_id,
+void QuotaDispatcher::RequestStorageQuota(int render_frame_id,
const GURL& origin_url,
StorageType type,
uint64_t requested_size,
@@ -131,7 +131,7 @@ void QuotaDispatcher::RequestStorageQuota(int render_view_id,
pending_quota_callbacks_.AddWithID(std::move(callback), request_id);
StorageQuotaParams params;
- params.render_view_id = render_view_id;
+ params.render_frame_id = render_frame_id;
params.request_id = request_id;
params.origin_url = origin_url;
params.storage_type = type;
« no previous file with comments | « content/child/quota_dispatcher.h ('k') | content/common/quota_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698