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. | |
|
vasilii
2017/02/17 12:59:14
Interface for a view or a controller?
mrefaat
2017/02/17 14:13:49
Acknowledged.
| |
| 14 class DesktopIOSPromotion { | |
| 15 public: | |
| 16 virtual void UpdateRecoveryPhoneLabel() = 0; | |
| 17 }; | |
| 18 | |
| 19 DesktopIOSPromotion* CreateDesktopIOSPromotionView( | |
| 20 DesktopIOSPromotionController* controller); | |
| 21 | |
| 22 #endif // CHROME_BROWSER_UI_DESKTOP_IOS_PROMOTION_DESKTOP_IOS_PROMOTION_H_ | |
| OLD | NEW |