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

Unified Diff: chrome/browser/ui/views/intent_picker_bubble_view.cc

Issue 2881683002: Log the creation of several more dialog box types. (Closed)
Patch Set: Fix alphabetization errors. Created 3 years, 7 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: chrome/browser/ui/views/intent_picker_bubble_view.cc
diff --git a/chrome/browser/ui/views/intent_picker_bubble_view.cc b/chrome/browser/ui/views/intent_picker_bubble_view.cc
index 9632fbf6327da47678aaf2cedd7f037f5c05542f..dd8e5bfd13eea8892823240058b5f33271154513 100644
--- a/chrome/browser/ui/views/intent_picker_bubble_view.cc
+++ b/chrome/browser/ui/views/intent_picker_bubble_view.cc
@@ -9,6 +9,7 @@
#include "base/logging.h"
#include "base/strings/string_piece.h"
#include "base/strings/utf_string_conversions.h"
+#include "chrome/browser/ui/browser_dialogs.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/views/frame/browser_view.h"
#include "chrome/browser/ui/views/toolbar/toolbar_view.h"
@@ -225,7 +226,9 @@ IntentPickerBubbleView::IntentPickerBubbleView(
intent_picker_cb_(intent_picker_cb),
selected_app_tag_(0),
scroll_view_(nullptr),
- app_info_(app_info) {}
+ app_info_(app_info) {
+ chrome::RecordDialogCreation(chrome::DialogIdentifier::INTENT_PICKER);
+}
IntentPickerBubbleView::~IntentPickerBubbleView() {
SetLayoutManager(nullptr);

Powered by Google App Engine
This is Rietveld 408576698