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

Unified Diff: content/browser/frame_host/render_frame_host_impl.cc

Issue 2364923004: Add UMA histograms to MHTML save operations. (Closed)
Patch Set: Address code review comments. Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.h ('k') | content/common/frame_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/render_frame_host_impl.cc
diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
index bcfd886f3c2bc284e01c379adaaf6c68577f4916..9b1fb2b8ec3c31ae99739c99fae69f95f394332d 100644
--- a/content/browser/frame_host/render_frame_host_impl.cc
+++ b/content/browser/frame_host/render_frame_host_impl.cc
@@ -2065,9 +2065,11 @@ void RenderFrameHostImpl::OnDidChangeLoadProgress(double load_progress) {
void RenderFrameHostImpl::OnSerializeAsMHTMLResponse(
int job_id,
bool success,
- const std::set<std::string>& digests_of_uris_of_serialized_resources) {
+ const std::set<std::string>& digests_of_uris_of_serialized_resources,
+ base::TimeDelta renderer_main_thread_time) {
MHTMLGenerationManager::GetInstance()->OnSerializeAsMHTMLResponse(
- this, job_id, success, digests_of_uris_of_serialized_resources);
+ this, job_id, success, digests_of_uris_of_serialized_resources,
+ renderer_main_thread_time);
}
#if defined(USE_EXTERNAL_POPUP_MENU)
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.h ('k') | content/common/frame_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698