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 // Interface for The Desktop iOS promotion view. | |
| 9 class DesktopIOSPromotion { | |
|
sky
2017/02/17 19:06:29
As mentioned, please rename this to DesktopIOPromo
mrefaat
2017/02/17 21:53:14
Done.
| |
| 10 public: | |
| 11 virtual void UpdateRecoveryPhoneLabel() = 0; | |
|
sky
2017/02/17 19:06:29
My previous comment about not needing the destruct
mrefaat
2017/02/17 21:53:14
Done.
| |
| 12 }; | |
| 13 | |
| 14 #endif // CHROME_BROWSER_UI_DESKTOP_IOS_PROMOTION_DESKTOP_IOS_PROMOTION_H_ | |
| OLD | NEW |