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

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

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 #ifndef CHROME_BROWSER_UI_VIEWS_DESKTOP_IOS_PROMOTION_DESKTOP_IOS_PROMOTION_VIEW _H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_DESKTOP_IOS_PROMOTION_DESKTOP_IOS_PROMOTION_BUBB LE_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_DESKTOP_IOS_PROMOTION_DESKTOP_IOS_PROMOTION_VIEW _H_ 6 #define CHROME_BROWSER_UI_VIEWS_DESKTOP_IOS_PROMOTION_DESKTOP_IOS_PROMOTION_BUBB LE_VIEW_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "chrome/browser/ui/desktop_ios_promotion/desktop_ios_promotion_util.h" 9 #include "chrome/browser/ui/desktop_ios_promotion/desktop_ios_promotion_util.h"
10 #include "chrome/browser/ui/desktop_ios_promotion/desktop_ios_promotion_view.h"
10 #include "ui/views/controls/button/button.h" 11 #include "ui/views/controls/button/button.h"
12 #include "ui/views/controls/label.h"
11 #include "ui/views/view.h" 13 #include "ui/views/view.h"
12 14
13 class DesktopIOSPromotionController; 15 class DesktopIOSPromotionController;
16 class Profile;
14 17
15 // The DesktopIOSPromotionView has the basic layout for the 18 // The DesktopIOSPromotionBubbleView has the basic layout for the
16 // desktop to ios promotion view. 19 // desktop to ios promotion view.
17 // This view will always be created as a subview of an existing 20 // This view will always be created as a subview of an existing
18 // bubble (ie. Password Bubble, Bookmark Bubble). 21 // bubble (ie. Password Bubble, Bookmark Bubble).
19 class DesktopIOSPromotionView : public views::View, 22 class DesktopIOSPromotionBubbleView : public DesktopIOSPromotionView,
20 public views::ButtonListener { 23 public views::View,
24 public views::ButtonListener {
21 public: 25 public:
22 explicit DesktopIOSPromotionView(desktop_ios_promotion::PromotionEntryPoint); 26 DesktopIOSPromotionBubbleView(
27 Profile* profile,
28 desktop_ios_promotion::PromotionEntryPoint entry_point);
29 ~DesktopIOSPromotionBubbleView() override;
30
31 // DesktopIOSPromotionView:
32 void UpdateRecoveryPhoneLabel() override;
23 33
24 private: 34 private:
25 // ButtonListener: 35 // ButtonListener:
26 void ButtonPressed(views::Button* sender, const ui::Event& event) override; 36 void ButtonPressed(views::Button* sender, const ui::Event& event) override;
27 37
28 views::Button* send_sms_button_ = nullptr; 38 views::Button* send_sms_button_ = nullptr;
29 views::Button* no_button_ = nullptr; 39 views::Button* no_button_ = nullptr;
30 // TODO(crbug.com/676655): Add learn more link. 40 views::Label* recovery_phone_label_ = nullptr;
31 41
32 DesktopIOSPromotionController* promotion_controller_ = nullptr; 42 std::unique_ptr<DesktopIOSPromotionController> promotion_controller_;
33 43
34 DISALLOW_COPY_AND_ASSIGN(DesktopIOSPromotionView); 44 DISALLOW_COPY_AND_ASSIGN(DesktopIOSPromotionBubbleView);
35 }; 45 };
36 46
37 #endif // CHROME_BROWSER_UI_VIEWS_DESKTOP_IOS_PROMOTION_DESKTOP_IOS_PROMOTION_V IEW_H_ 47 #endif // CHROME_BROWSER_UI_VIEWS_DESKTOP_IOS_PROMOTION_DESKTOP_IOS_PROMOTION_B UBBLE_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698