| 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 #include "chrome/browser/ui/desktop_ios_promotion/desktop_ios_promotion_controll
er.h" |
| 6 |
| 7 DesktopIOSPromotionController::DesktopIOSPromotionController() {} |
| 8 |
| 9 DesktopIOSPromotionController::~DesktopIOSPromotionController() {} |
| 10 |
| 11 void DesktopIOSPromotionController::OnSendSMSClicked() { |
| 12 // TODO(crbug.com/676655): Call the growth api to send sms. |
| 13 } |
| 14 |
| 15 void DesktopIOSPromotionController::OnNoThanksClicked() { |
| 16 // TODO(crbug.com/676655): Handle logging & update sync. |
| 17 } |
| OLD | NEW |