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

Side by Side Diff: chrome/browser/ui/views/desktop_ios_promotion/desktop_ios_promotion_bubble_view.cc

Issue 2694893002: Integrate SMS service with Desktop iOS promotion (Closed)
Patch Set: nits Created 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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/desktop_ios_promotion/desktop_ios_promotion_vi ew.h" 5 #include "chrome/browser/ui/views/desktop_ios_promotion/desktop_ios_promotion_bu bble_view.h"
6 6
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "chrome/browser/profiles/profile.h"
8 #include "chrome/browser/ui/browser.h" 9 #include "chrome/browser/ui/browser.h"
9 #include "chrome/browser/ui/desktop_ios_promotion/desktop_ios_promotion_controll er.h" 10 #include "chrome/browser/ui/desktop_ios_promotion/desktop_ios_promotion_controll er.h"
10 #include "chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h" 11 #include "chrome/browser/ui/views/passwords/manage_passwords_bubble_view.h"
11 #include "chrome/grit/generated_resources.h" 12 #include "chrome/grit/generated_resources.h"
12 #include "ui/base/l10n/l10n_util.h" 13 #include "ui/base/l10n/l10n_util.h"
14 #include "ui/base/resource/resource_bundle.h"
13 #include "ui/views/controls/button/button.h" 15 #include "ui/views/controls/button/button.h"
14 #include "ui/views/controls/button/md_text_button.h" 16 #include "ui/views/controls/button/md_text_button.h"
15 #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 21
21 int GetDesiredBubbleMaxWidth( 22 int GetDesiredBubbleMaxWidth(
22 desktop_ios_promotion::PromotionEntryPoint entry_point) { 23 desktop_ios_promotion::PromotionEntryPoint entry_point) {
23 if (entry_point == 24 if (entry_point ==
24 desktop_ios_promotion::PromotionEntryPoint::SAVE_PASSWORD_BUBBLE) { 25 desktop_ios_promotion::PromotionEntryPoint::SAVE_PASSWORD_BUBBLE) {
25 return ManagePasswordsBubbleView::kDesiredBubbleWidth; 26 return ManagePasswordsBubbleView::kDesiredBubbleWidth;
26 } 27 }
27 return 0; 28 return 0;
28 } 29 }
29 30
30 } // namespace 31 } // namespace
31 32
32 DesktopIOSPromotionView::DesktopIOSPromotionView( 33 DesktopIOSPromotionBubbleView::DesktopIOSPromotionBubbleView(
33 desktop_ios_promotion::PromotionEntryPoint entry_point) { 34 Profile* profile,
34 promotion_controller_ = new DesktopIOSPromotionController(); 35 desktop_ios_promotion::PromotionEntryPoint entry_point)
35 int bubbleWidth = ::GetDesiredBubbleMaxWidth(entry_point); 36 : recovery_phone_label_(new views::Label()),
37 promotion_controller_(
38 base::MakeUnique<DesktopIOSPromotionController>(profile,
39 this,
40 entry_point)) {
41 int bubble_width =
42 ::GetDesiredBubbleMaxWidth(promotion_controller_->entry_point());
36 views::GridLayout* layout = new views::GridLayout(this); 43 views::GridLayout* layout = new views::GridLayout(this);
37 layout->set_minimum_size(gfx::Size(bubbleWidth, 0)); 44 layout->set_minimum_size(gfx::Size(bubble_width, 0));
38 SetLayoutManager(layout); 45 SetLayoutManager(layout);
39 send_sms_button_ = views::MdTextButton::CreateSecondaryUiBlueButton( 46 send_sms_button_ = views::MdTextButton::CreateSecondaryUiBlueButton(
40 this, l10n_util::GetStringUTF16(IDS_DESKTOP_TO_IOS_PROMO_SEND_TO_PHONE)); 47 this, l10n_util::GetStringUTF16(IDS_DESKTOP_TO_IOS_PROMO_SEND_TO_PHONE));
41 no_button_ = views::MdTextButton::CreateSecondaryUiButton( 48 no_button_ = views::MdTextButton::CreateSecondaryUiButton(
42 this, l10n_util::GetStringUTF16(IDS_DESKTOP_TO_IOS_PROMO_NO_THANKS)); 49 this, l10n_util::GetStringUTF16(IDS_DESKTOP_TO_IOS_PROMO_NO_THANKS));
43 50
44 constexpr int kLabelColumnSet = 1; 51 constexpr int kLabelColumnSet = 1;
45 views::ColumnSet* column_set = layout->AddColumnSet(kLabelColumnSet); 52 views::ColumnSet* column_set = layout->AddColumnSet(kLabelColumnSet);
53 column_set->AddPaddingColumn(0, 8);
46 column_set->AddColumn(views::GridLayout::FILL, views::GridLayout::FILL, 0, 54 column_set->AddColumn(views::GridLayout::FILL, views::GridLayout::FILL, 0,
47 views::GridLayout::FIXED, bubbleWidth, 0); 55 views::GridLayout::FIXED, bubble_width, 0);
48 56
49 constexpr int kDoubleButtonColumnSet = 2; 57 constexpr int kDoubleButtonColumnSet = 2;
50 column_set = layout->AddColumnSet(kDoubleButtonColumnSet); 58 column_set = layout->AddColumnSet(kDoubleButtonColumnSet);
51 column_set->AddColumn(views::GridLayout::TRAILING, views::GridLayout::CENTER, 59 column_set->AddColumn(views::GridLayout::TRAILING, views::GridLayout::CENTER,
52 1, views::GridLayout::USE_PREF, 0, 0); 60 1, views::GridLayout::USE_PREF, 0, 0);
53 column_set->AddPaddingColumn(0, views::kRelatedButtonHSpacing); 61 column_set->AddPaddingColumn(0, views::kRelatedButtonHSpacing);
54 column_set->AddColumn(views::GridLayout::TRAILING, views::GridLayout::CENTER, 62 column_set->AddColumn(views::GridLayout::TRAILING, views::GridLayout::CENTER,
55 0, views::GridLayout::USE_PREF, 0, 0); 63 0, views::GridLayout::USE_PREF, 0, 0);
56 64 constexpr int kPhoneNumberColumnSet = 3;
65 column_set = layout->AddColumnSet(kPhoneNumberColumnSet);
66 column_set->AddPaddingColumn(0, 32);
67 column_set->AddColumn(views::GridLayout::FILL, views::GridLayout::FILL, 0,
68 views::GridLayout::FIXED, bubble_width, 0);
57 views::Label* label = 69 views::Label* label =
58 new views::Label(desktop_ios_promotion::GetPromoBubbleText(entry_point)); 70 new views::Label(desktop_ios_promotion::GetPromoBubbleText(
71 promotion_controller_->entry_point()));
72 label->SetEnabledColor(SK_ColorGRAY);
59 label->SetMultiLine(true); 73 label->SetMultiLine(true);
60 label->SetHorizontalAlignment(gfx::ALIGN_LEFT); 74 label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
61 layout->StartRow(0, kLabelColumnSet); 75 layout->StartRow(0, kLabelColumnSet);
62 layout->AddView(label); 76 layout->AddView(label);
77 layout->StartRow(0, kPhoneNumberColumnSet);
78 UpdateRecoveryPhoneLabel();
79 ui::ResourceBundle* rb = &ui::ResourceBundle::GetSharedInstance();
80 recovery_phone_label_->SetFontList(
81 rb->GetFontList(ui::ResourceBundle::BoldFont));
82 recovery_phone_label_->SetEnabledColor(SK_ColorGRAY);
83 recovery_phone_label_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
84 layout->AddView(recovery_phone_label_);
63 layout->AddPaddingRow(0, views::kUnrelatedControlVerticalSpacing); 85 layout->AddPaddingRow(0, views::kUnrelatedControlVerticalSpacing);
64 layout->StartRow(0, kDoubleButtonColumnSet); 86 layout->StartRow(0, kDoubleButtonColumnSet);
65 layout->AddView(send_sms_button_); 87 layout->AddView(send_sms_button_);
66 layout->AddView(no_button_); 88 layout->AddView(no_button_);
67 89
68 // TODO(crbug.com/676655): Log impression. 90 promotion_controller_->OnPromotionShown();
69 } 91 }
70 92
71 void DesktopIOSPromotionView::ButtonPressed(views::Button* sender, 93 DesktopIOSPromotionBubbleView::~DesktopIOSPromotionBubbleView() = default;
72 const ui::Event& event) { 94
95 void DesktopIOSPromotionBubbleView::ButtonPressed(views::Button* sender,
96 const ui::Event& event) {
73 if (sender == send_sms_button_) { 97 if (sender == send_sms_button_) {
74 promotion_controller_->OnSendSMSClicked(); 98 promotion_controller_->OnSendSMSClicked();
75 } else if (sender == no_button_) { 99 } else if (sender == no_button_) {
76 promotion_controller_->OnNoThanksClicked(); 100 promotion_controller_->OnNoThanksClicked();
77 } else { 101 } else {
78 NOTREACHED(); 102 NOTREACHED();
79 } 103 }
80 GetWidget()->Close(); 104 GetWidget()->Close();
81 } 105 }
106
107 void DesktopIOSPromotionBubbleView::UpdateRecoveryPhoneLabel() {
108 recovery_phone_label_->SetText(
109 base::UTF8ToUTF16(promotion_controller_->GetUsersRecoveryPhoneNumber()));
110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698