Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(581)

Side by Side Diff: ios/chrome/browser/desktop_promotion/desktop_promotion_prefs.h

Issue 2643723004: Add Desktop iOS promotion logging to chrome ios app. (Closed)
Patch Set: browser_state keyed service Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698