Chromium Code Reviews| 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_DESKTOP_IOS_PROMOTION_DESKTOP_IOS_PROMOTION_H_ | |
| 6 #define CHROME_BROWSER_UI_DESKTOP_IOS_PROMOTION_DESKTOP_IOS_PROMOTION_H_ | |
| 7 | |
| 8 class DesktopIOSPromotionController; | |
| 9 namespace desktop_ios_promotion { | |
| 10 enum class PromotionEntryPoint; | |
| 11 } | |
| 12 | |
| 13 // Interface for The Desktop iOS Promotion. | |
| 14 class DesktopIOSPromotion { | |
| 15 public: | |
| 16 virtual void UpdateRecoveryPhoneLabel() = 0; | |
| 17 | |
| 18 protected: | |
| 19 virtual ~DesktopIOSPromotion() = default; | |
|
sky
2017/02/17 00:57:22
You shouldn't actually need the = default here.
mrefaat
2017/02/17 04:31:49
Done.
| |
| 20 }; | |
| 21 | |
| 22 DesktopIOSPromotion* CreateDesktopIOSPromotionView( | |
| 23 DesktopIOSPromotionController* controller); | |
| 24 | |
| 25 #endif // CHROME_BROWSER_UI_DESKTOP_IOS_PROMOTION_DESKTOP_IOS_PROMOTION_H_ | |
| OLD | NEW |