| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_DESKTOP_IOS_PROMOTION_DESKTOP_IOS_PROMOTION_VIEW
_H_ | |
| 6 #define CHROME_BROWSER_UI_VIEWS_DESKTOP_IOS_PROMOTION_DESKTOP_IOS_PROMOTION_VIEW
_H_ | |
| 7 | |
| 8 #include "base/macros.h" | |
| 9 #include "chrome/browser/ui/desktop_ios_promotion/desktop_ios_promotion_util.h" | |
| 10 #include "ui/views/controls/button/button.h" | |
| 11 #include "ui/views/view.h" | |
| 12 | |
| 13 class DesktopIOSPromotionController; | |
| 14 | |
| 15 // The DesktopIOSPromotionView has the basic layout for the | |
| 16 // desktop to ios promotion view. | |
| 17 // This view will always be created as a subview of an existing | |
| 18 // bubble (ie. Password Bubble, Bookmark Bubble). | |
| 19 class DesktopIOSPromotionView : public views::View, | |
| 20 public views::ButtonListener { | |
| 21 public: | |
| 22 explicit DesktopIOSPromotionView(desktop_ios_promotion::PromotionEntryPoint); | |
| 23 | |
| 24 private: | |
| 25 // ButtonListener: | |
| 26 void ButtonPressed(views::Button* sender, const ui::Event& event) override; | |
| 27 | |
| 28 views::Button* send_sms_button_ = nullptr; | |
| 29 views::Button* no_button_ = nullptr; | |
| 30 // TODO(crbug.com/676655): Add learn more link. | |
| 31 | |
| 32 DesktopIOSPromotionController* promotion_controller_ = nullptr; | |
| 33 | |
| 34 DISALLOW_COPY_AND_ASSIGN(DesktopIOSPromotionView); | |
| 35 }; | |
| 36 | |
| 37 #endif // CHROME_BROWSER_UI_VIEWS_DESKTOP_IOS_PROMOTION_DESKTOP_IOS_PROMOTION_V
IEW_H_ | |
| OLD | NEW |