| 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[]; |
| 14 extern const char kDesktopIOSPromotionTargetedEntryPoints[]; |
| 15 extern const char kDesktopIOSPromotionLastInteraction[]; |
| 16 extern const char kDesktopIOSPromotionDone[]; |
| 17 } // namespace prefs |
| 18 |
| 19 namespace desktop_ios_promotion { |
| 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 |