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

Side by Side Diff: chrome/common/pref_names.h

Issue 1087933002: Cross Device Promo - Main Eligibility Flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a flow for when the first listDevices request is scheduled in the future. Tests around the sche… Created 5 years, 7 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Constants for the names of various preferences, for easier changing. 5 // Constants for the names of various preferences, for easier changing.
6 6
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ 7 #ifndef CHROME_COMMON_PREF_NAMES_H_
8 #define CHROME_COMMON_PREF_NAMES_H_ 8 #define CHROME_COMMON_PREF_NAMES_H_
9 9
10 #include <stddef.h> 10 #include <stddef.h>
(...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 578
579 extern const char kInvalidationServiceUseGCMChannel[]; 579 extern const char kInvalidationServiceUseGCMChannel[];
580 580
581 #if !defined(OS_ANDROID) && !defined(OS_IOS) 581 #if !defined(OS_ANDROID) && !defined(OS_IOS)
582 extern const char kSignInPromoStartupCount[]; 582 extern const char kSignInPromoStartupCount[];
583 extern const char kSignInPromoUserSkipped[]; 583 extern const char kSignInPromoUserSkipped[];
584 extern const char kSignInPromoShowOnFirstRunAllowed[]; 584 extern const char kSignInPromoShowOnFirstRunAllowed[];
585 extern const char kSignInPromoShowNTPBubble[]; 585 extern const char kSignInPromoShowNTPBubble[];
586 #endif 586 #endif
587 587
588 #if !defined(OS_CHROMEOS) && !defined(OS_ANDROID) && !defined(OS_IOS)
589 extern const char kCrossDevicePromoOptedOut[];
590 extern const char kCrossDevicePromoActive[];
591 extern const char kCrossDevicePromoObservedSingleAccountCookie[];
592 extern const char kCrossDevicePromoNextFetchListDevicesTime[];
593 extern const char kCrossDevicePromoNumDevices[];
594 extern const char kCrossDevicePromoLastDeviceActiveTime[];
595 #endif
596
588 extern const char kWebAppCreateOnDesktop[]; 597 extern const char kWebAppCreateOnDesktop[];
589 extern const char kWebAppCreateInAppsMenu[]; 598 extern const char kWebAppCreateInAppsMenu[];
590 extern const char kWebAppCreateInQuickLaunchBar[]; 599 extern const char kWebAppCreateInQuickLaunchBar[];
591 600
592 extern const char kGeolocationAccessToken[]; 601 extern const char kGeolocationAccessToken[];
593 #if defined(OS_ANDROID) 602 #if defined(OS_ANDROID)
594 extern const char kGeolocationEnabled[]; 603 extern const char kGeolocationEnabled[];
595 #endif 604 #endif
596 605
597 #if defined(ENABLE_GOOGLE_NOW) 606 #if defined(ENABLE_GOOGLE_NOW)
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
826 835
827 extern const char kRegisteredSupervisedUserWhitelists[]; 836 extern const char kRegisteredSupervisedUserWhitelists[];
828 837
829 #if defined(ENABLE_EXTENSIONS) 838 #if defined(ENABLE_EXTENSIONS)
830 extern const char kAnimationPolicy[]; 839 extern const char kAnimationPolicy[];
831 #endif 840 #endif
832 841
833 } // namespace prefs 842 } // namespace prefs
834 843
835 #endif // CHROME_COMMON_PREF_NAMES_H_ 844 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698