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 { | |
|
sdefresne
2017/01/26 17:03:25
Can you move those prefs to ios/chrome/browser/pre
mrefaat
2017/01/26 23:34:12
Done.
| |
| 13 extern const char kDesktopIOSPromotionSMSEntryPoint[]; | |
| 14 extern const char kDesktopIOSPromotionTargetedEntryPoints[]; | |
| 15 extern const char kDesktopIOSPromotionLastImpression[]; | |
| 16 extern const char kDesktopIOSPromotionDone[]; | |
| 17 } // namespace prefs | |
| 18 | |
| 19 // Register profile specific desktop promotion related preferences. | |
| 20 void RegisterDesktopPromotionUserPrefs( | |
| 21 user_prefs::PrefRegistrySyncable* registry); | |
| 22 | |
| 23 #endif // CHROME_BROWSER_DESKTOP_PROMOTION_DESKTOP_PROMOTION_PREFS_H | |
| OLD | NEW |