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

Unified Diff: extensions/browser/extension_host.cc

Issue 902963002: Replace the ExtensionHost load UMAs (Extensions.BackgroundPageLoadTime and friends) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ready Created 5 years, 10 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
Index: extensions/browser/extension_host.cc
diff --git a/extensions/browser/extension_host.cc b/extensions/browser/extension_host.cc
index 7874528d272ba54f76d1f4c78d462533d2b78fc4..6d2c54eb0f634d28fe7a95e3a1105937f93aada0 100644
--- a/extensions/browser/extension_host.cc
+++ b/extensions/browser/extension_host.cc
@@ -12,7 +12,7 @@
#include "base/memory/weak_ptr.h"
#include "base/message_loop/message_loop.h"
#include "base/metrics/field_trial.h"
-#include "base/metrics/histogram.h"
+#include "base/metrics/histogram_macros.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "content/public/browser/browser_context.h"
@@ -152,9 +152,10 @@ ExtensionHost::ExtensionHost(const Extension* extension,
ExtensionHost::~ExtensionHost() {
if (extension_host_type_ == VIEW_TYPE_EXTENSION_BACKGROUND_PAGE &&
- extension_ && BackgroundInfo::HasLazyBackgroundPage(extension_)) {
- UMA_HISTOGRAM_LONG_TIMES("Extensions.EventPageActiveTime",
- since_created_.Elapsed());
+ extension_ && BackgroundInfo::HasLazyBackgroundPage(extension_) &&
+ load_start_.get()) {
+ UMA_HISTOGRAM_LONG_TIMES("Extensions.EventPageActiveTime2",
+ load_start_->Elapsed());
}
content::NotificationService::current()->Notify(
extensions::NOTIFICATION_EXTENSION_HOST_DESTROYED,
@@ -179,7 +180,7 @@ bool ExtensionHost::IsRenderViewLive() const {
}
void ExtensionHost::CreateRenderViewSoon() {
- if ((render_process_host() && render_process_host()->HasConnection())) {
+ if (render_process_host() && render_process_host()->HasConnection()) {
// If the process is already started, go ahead and initialize the RenderView
// synchronously. The process creation is the real meaty part that we want
// to defer.
@@ -238,6 +239,7 @@ const GURL& ExtensionHost::GetURL() const {
}
void ExtensionHost::LoadInitialURL() {
+ load_start_.reset(new base::ElapsedTimer());
host_contents_->GetController().LoadURL(
initial_url_, content::Referrer(), ui::PAGE_TRANSITION_LINK,
std::string());
@@ -306,23 +308,17 @@ void ExtensionHost::DidStopLoading(content::RenderViewHost* render_view_host) {
did_stop_loading_ = true;
OnDidStopLoading();
if (notify) {
+ CHECK(load_start_.get());
if (extension_host_type_ == VIEW_TYPE_EXTENSION_BACKGROUND_PAGE) {
if (extension_ && BackgroundInfo::HasLazyBackgroundPage(extension_)) {
- UMA_HISTOGRAM_TIMES("Extensions.EventPageLoadTime",
- since_created_.Elapsed());
+ UMA_HISTOGRAM_TIMES("Extensions.EventPageLoadTime2",
+ load_start_->Elapsed());
} else {
- UMA_HISTOGRAM_TIMES("Extensions.BackgroundPageLoadTime",
- since_created_.Elapsed());
+ UMA_HISTOGRAM_TIMES("Extensions.BackgroundPageLoadTime2",
+ load_start_->Elapsed());
}
- } else if (extension_host_type_ == VIEW_TYPE_EXTENSION_DIALOG) {
- UMA_HISTOGRAM_TIMES("Extensions.DialogLoadTime",
- since_created_.Elapsed());
} else if (extension_host_type_ == VIEW_TYPE_EXTENSION_POPUP) {
- UMA_HISTOGRAM_TIMES("Extensions.PopupLoadTime",
- since_created_.Elapsed());
- } else if (extension_host_type_ == VIEW_TYPE_EXTENSION_INFOBAR) {
- UMA_HISTOGRAM_TIMES("Extensions.InfobarLoadTime",
- since_created_.Elapsed());
+ UMA_HISTOGRAM_TIMES("Extensions.PopupLoadTime2", load_start_->Elapsed());
}
// Send the notification last, because it might result in this being

Powered by Google App Engine
This is Rietveld 408576698