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

Side by Side Diff: chrome/browser/ui/views/first_run_bubble.cc

Issue 9960046: Merge 130848 - Add FirstRun.SearchEngineBubble UMA histogram counts. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1084/src/
Patch Set: Created 8 years, 8 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
« no previous file with comments | « chrome/browser/ui/gtk/first_run_bubble.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/ui/views/first_run_bubble.h" 5 #include "chrome/browser/ui/views/first_run_bubble.h"
6 6
7 #include "base/utf_string_conversions.h" 7 #include "base/utf_string_conversions.h"
8 #include "chrome/browser/first_run/first_run.h"
8 #include "chrome/browser/search_engines/util.h" 9 #include "chrome/browser/search_engines/util.h"
9 #include "chrome/browser/ui/browser_list.h" 10 #include "chrome/browser/ui/browser_list.h"
10 #include "chrome/browser/ui/views/window.h" 11 #include "chrome/browser/ui/views/window.h"
11 #include "grit/generated_resources.h" 12 #include "grit/generated_resources.h"
12 #include "ui/base/l10n/l10n_util.h" 13 #include "ui/base/l10n/l10n_util.h"
13 #include "ui/base/resource/resource_bundle.h" 14 #include "ui/base/resource/resource_bundle.h"
14 #include "ui/views/controls/label.h" 15 #include "ui/views/controls/label.h"
15 #include "ui/views/controls/link.h" 16 #include "ui/views/controls/link.h"
16 #include "ui/views/layout/grid_layout.h" 17 #include "ui/views/layout/grid_layout.h"
17 #include "ui/views/layout/layout_constants.h" 18 #include "ui/views/layout/layout_constants.h"
18 19
19 namespace { 20 namespace {
20 const int kAnchorVerticalInset = 5; 21 const int kAnchorVerticalInset = 5;
21 const int kTopInset = 1; 22 const int kTopInset = 1;
22 const int kLeftInset = 2; 23 const int kLeftInset = 2;
23 const int kBottomInset = 7; 24 const int kBottomInset = 7;
24 const int kRightInset = 2; 25 const int kRightInset = 2;
25 } // namespace 26 } // namespace
26 27
27 namespace first_run { 28 namespace first_run {
28 void ShowFirstRunDialog(Profile* profile) {} 29 void ShowFirstRunDialog(Profile* profile) {}
29 } // namespace first_run 30 } // namespace first_run
30 31
31 // static 32 // static
32 FirstRunBubble* FirstRunBubble::ShowBubble(Profile* profile, 33 FirstRunBubble* FirstRunBubble::ShowBubble(Profile* profile,
33 views::View* anchor_view) { 34 views::View* anchor_view) {
35 first_run::LogFirstRunMetric(first_run::FIRST_RUN_BUBBLE_SHOWN);
36
34 FirstRunBubble* delegate = new FirstRunBubble(profile, anchor_view); 37 FirstRunBubble* delegate = new FirstRunBubble(profile, anchor_view);
35 browser::CreateViewsBubble(delegate); 38 browser::CreateViewsBubble(delegate);
36 delegate->StartFade(true); 39 delegate->StartFade(true);
37 return delegate; 40 return delegate;
38 } 41 }
39 42
40 void FirstRunBubble::Init() { 43 void FirstRunBubble::Init() {
41 ResourceBundle& rb = ResourceBundle::GetSharedInstance(); 44 ResourceBundle& rb = ResourceBundle::GetSharedInstance();
42 const gfx::Font& original_font = rb.GetFont(ResourceBundle::MediumFont); 45 const gfx::Font& original_font = rb.GetFont(ResourceBundle::MediumFont);
43 46
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 86
84 FirstRunBubble::FirstRunBubble(Profile* profile, views::View* anchor_view) 87 FirstRunBubble::FirstRunBubble(Profile* profile, views::View* anchor_view)
85 : views::BubbleDelegateView(anchor_view, views::BubbleBorder::TOP_LEFT), 88 : views::BubbleDelegateView(anchor_view, views::BubbleBorder::TOP_LEFT),
86 profile_(profile) { 89 profile_(profile) {
87 } 90 }
88 91
89 FirstRunBubble::~FirstRunBubble() { 92 FirstRunBubble::~FirstRunBubble() {
90 } 93 }
91 94
92 void FirstRunBubble::LinkClicked(views::Link* source, int event_flags) { 95 void FirstRunBubble::LinkClicked(views::Link* source, int event_flags) {
96 first_run::LogFirstRunMetric(first_run::FIRST_RUN_BUBBLE_CHANGE_INVOKED);
97
93 // Get |profile_|'s browser before closing the bubble, which deletes |this|. 98 // Get |profile_|'s browser before closing the bubble, which deletes |this|.
94 Browser* browser = BrowserList::GetLastActiveWithProfile(profile_); 99 Browser* browser = BrowserList::GetLastActiveWithProfile(profile_);
95 GetWidget()->Close(); 100 GetWidget()->Close();
96 if (browser) 101 if (browser)
97 browser->OpenSearchEngineOptionsDialog(); 102 browser->OpenSearchEngineOptionsDialog();
98 } 103 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/first_run_bubble.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698