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_DESKTOP_PROMOTION_DESKTOP_PROMOTION_PREFS_H | |
| 6 #define CHROME_BROWSER_DESKTOP_PROMOTION_DESKTOP_PROMOTION_PREFS_H | |
| 7 | |
| 8 namespace user_prefs { | |
| 9 class PrefRegistrySyncable; | |
| 10 } | |
| 11 | |
| 12 namespace prefs { | |
| 13 extern const char kDesktopIOSPromotionSMSEntryPoint[]; | |
|
rohitrao (ping after 24h)
2017/01/23 20:31:39
Could these live with the other prefs in ios/chrom
mrefaat
2017/01/24 19:57:19
Is there a benefit of doing that, many of the feat
| |
| 14 extern const char kDesktopIOSPromotionTargetedEntryPoints[]; | |
| 15 extern const char kDesktopIOSPromotionLastImpression[]; | |
| 16 extern const char kDesktopIOSPromotionDone[]; | |
| 17 } // namespace prefs | |
| 18 | |
| 19 namespace desktop_ios_promotion { | |
|
rohitrao (ping after 24h)
2017/01/23 20:31:39
I would get rid of the namespace here, because you
mrefaat
2017/01/24 19:57:19
Acknowledged.
| |
| 20 | |
| 21 // Register profile specific desktop promotion related preferences. | |
| 22 void RegisterDesktopPromotionUserPrefs( | |
| 23 user_prefs::PrefRegistrySyncable* registry); | |
| 24 | |
| 25 } // namespace desktop_ios_promotion | |
| 26 | |
| 27 #endif // CHROME_BROWSER_DESKTOP_PROMOTION_DESKTOP_PROMOTION_PREFS_H | |
| OLD | NEW |